Skip to content

Commit

Permalink
env: avoid wxpython bug
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbrodbeck committed Mar 31, 2021
1 parent 4be6241 commit 58b815c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions env-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ dependencies:
- colormath >= 2.1
- tqdm >= 4.40
- keyring >= 5
- wxpython >= 4.0.3, < 4.1 # double install of libraries
- wxpython >= 4.0.3, != 4.1.0 # double install of libraries
# building
- setuptools >= 17
- cython
- cython >= 0.21
# docs
- sphinx >= 3
- sphinx-autodoc-typehints
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,25 +71,25 @@
long_description=DESC,
python_requires='>=3.8',
setup_requires=[
"numpy >= 1.11",
"numpy >= 1.20",
"cython >= 0.21",
],
extras_require={
'base': [
'colormath >= 2.1',
'keyring >= 5',
'mne >= 0.17',
'nibabel >= 2.0',
'mne >= 0.19',
'nibabel >= 2.5',
'pillow',
'tqdm >= 4.8',
'tqdm >= 4.40',
],
'full': [
'numpy >= 1.20',
'scipy >= 1.3',
'matplotlib >= 2.1',
'matplotlib >= 3.3.4',
],
'plot.brain': [
'pysurfer[save_movie] >= 0.8',
'pysurfer[save_movie] >= 0.9',
],
},
include_dirs=[np.get_include()],
Expand Down

0 comments on commit 58b815c

Please sign in to comment.