Skip to content

Commit e80df43

Browse files
Fix package dependencies (#410)
* 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>
1 parent 3568262 commit e80df43

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

dev-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ dependencies:
77
- jupyter-packaging
88
- jupyterlab=3
99
- ipywidgets>=7.6
10-
- flake8
1110
- pillow
1211
- numpy
1312
- matplotlib
13+
- flake8
1414
- pytest
1515
- nbval
1616
- pip:

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,15 @@
5757
long_description=long_description,
5858
license='BSD License',
5959
include_package_data=True,
60-
install_requires=['ipykernel>=4.7', 'ipywidgets>=7.6.0', 'matplotlib>=2.0.0'],
60+
install_requires=[
61+
'ipython<8',
62+
'numpy',
63+
'ipython_genutils',
64+
'pillow',
65+
'traitlets<6',
66+
'ipywidgets>=7.6.0,<8',
67+
'matplotlib>=2.0.0,<4',
68+
],
6169
packages=find_packages(),
6270
zip_safe=False,
6371
cmdclass=cmdclass,

0 commit comments

Comments
 (0)