Skip to content

Commit c64edfd

Browse files
author
Leah Wasser
authored
RTD Fixes and envt slim down (#18)
Small RTD fix to ensure modules are found by autodoc
1 parent 34f1fa2 commit c64edfd

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
# add these directories to sys.path here. If the directory is relative to the
1313
# documentation root, use os.path.abspath to make it absolute, like shown here.
1414
#
15-
#import os
16-
#import sys
17-
#sys.path.insert(0, os.path.abspath("../"))
15+
import os
16+
import sys
17+
sys.path.insert(0, os.path.abspath("../"))
1818

1919

2020
# -- Project information -----------------------------------------------------

readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
python:
22
version: 3
33
pip_install: true
4-
#conda:
5-
# file: environment.yml
4+
conda:
5+
file: environment.yml

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
from os import path
3-
from numpy.distutils.core import setup
3+
# from numpy.distutils.core import setup
44
from setuptools import setup
55

66

@@ -38,7 +38,6 @@ def configuration(parent_package="", top_path=None):
3838
url="https://github.com/earthlap/matplotcheck",
3939
version=VERSION,
4040
install_requires=[
41-
"tqdm",
4241
"pandas",
4342
"numpy",
4443
"folium",

0 commit comments

Comments
 (0)