Skip to content

Commit

Permalink
deps: optional pinned deps to fix arcgis mess
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdadams committed Jul 14, 2023
1 parent 790879d commit f87c1a5
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,16 @@
'SQLAlchemy==1.4.*',
'pg8000==1.29.*',
'psycopg2-binary==2.9.*',
'numpy==1.23.*', #: Pinned to 1.23.* to fix "module 'numpy' has no attribute 'str'" error
'notebook==6.5.4', #: Pinning these two to fix dependency resolver taking forever
'ipykernel==6.23.1'
'numpy<1.24.*', #: Pinned to < 1.24 to fix "module 'numpy' has no attribute 'str'" error
],
extras_require={
'nopro': [
#: pinned versions to avoid backtracking if pro (and thus arcgis) aren't already installed
'jupyterlab==3.6.5',
'jupyter-server==1.24.0',
'ipykernel==6.24.0',
'ypy-websocket==0.8.2'
],
'tests': [
'pylint-quotes==0.2.*',
'pylint==2.15.*',
Expand Down

0 comments on commit f87c1a5

Please sign in to comment.