Skip to content

Commit

Permalink
remove temp pins and merge back python 3.11 deps
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Jul 21, 2023
1 parent 1d0e520 commit a5ae3b1
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,19 +91,12 @@ def get_setup_version(reponame):
'matplotlib',
'plotly',
'pygraphviz',
'ipykernel <6.18.0', # temporary
'numpy < 1.24', # temporary, for a numba error
'ipywidgets',
'numba >=0.51.0',
'datashader >=0.6.5',
'spatialpandas >=0.4.3',
]

# Packages not working on python 3.11 because of numba
if sys.version_info < (3, 11):
extras_require['examples'] += [
'numba >=0.51.0',
'datashader >=0.6.5',
'spatialpandas >=0.4.3',
]

# Run the example tests by installing examples_tests together with tests
extras_require["examples_tests"] = extras_require["examples"] + extras_require['tests_nb']

Expand Down

0 comments on commit a5ae3b1

Please sign in to comment.