Skip to content

Commit ac00184

Browse files
committed
Fix numpy/matplotlib installation conflict
For some reason the latest release of matplotlib causes a version of numpy to be installed during the build process that conflicts with the version installed at run time.
1 parent a34900c commit ac00184

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.nengobones.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ setup_py:
2222
- pytest>=6.1.0
2323
- pytest-rng>=1.0.0
2424
docs_req:
25-
- matplotlib>=3.0.2
25+
- matplotlib>=3.0.2,<3.4.3
2626
- jupyter>=1.0.0
2727
- seaborn>=0.9.0
2828
- sphinx>=1.8

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def read(*filenames, **kwargs):
3535
"tensorflow>=2.1.0",
3636
]
3737
docs_req = [
38-
"matplotlib>=3.0.2",
38+
"matplotlib>=3.0.2,<3.4.3",
3939
"jupyter>=1.0.0",
4040
"seaborn>=0.9.0",
4141
"sphinx>=1.8",

0 commit comments

Comments
 (0)