Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
john-zither committed Nov 17, 2024
1 parent 793f990 commit fafa978
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ def __getattr__(cls, name):
'scipy.optimize',
'scipy.stats',
]
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
sys.path.insert(0, os.path.abspath('../../')) # Adjust the path as needed
sys.path.insert(0, os.path.abspath('..'))
# sys.path.insert(0, os.path.abspath('../')) # Adjust this if necessary
# sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
# sys.path.insert(0, os.path.abspath('../../')) # Adjust the path as needed
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand Down
7 changes: 7 additions & 0 deletions docs/rtd_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
six==1.16.0
mock
eeweather==0.3.24
numpy==1.23.2
pandas<=1.5.3
scipy==1.10.0
sqlalchemy<=1.4.46
zipcodes==1.2.0
loguru
-e .

0 comments on commit fafa978

Please sign in to comment.