Skip to content

Commit

Permalink
Fix package dependencies (#410)
Browse files Browse the repository at this point in the history
* Fix package dependencies

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
martinRenou and pre-commit-ci[bot] committed Dec 17, 2021
1 parent 3568262 commit e80df43
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ dependencies:
- jupyter-packaging
- jupyterlab=3
- ipywidgets>=7.6
- flake8
- pillow
- numpy
- matplotlib
- flake8
- pytest
- nbval
- pip:
Expand Down
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,15 @@
long_description=long_description,
license='BSD License',
include_package_data=True,
install_requires=['ipykernel>=4.7', 'ipywidgets>=7.6.0', 'matplotlib>=2.0.0'],
install_requires=[
'ipython<8',
'numpy',
'ipython_genutils',
'pillow',
'traitlets<6',
'ipywidgets>=7.6.0,<8',
'matplotlib>=2.0.0,<4',
],
packages=find_packages(),
zip_safe=False,
cmdclass=cmdclass,
Expand Down

0 comments on commit e80df43

Please sign in to comment.