Skip to content

Commit

Permalink
Restrict matplotlib version for ternary axis bug
Browse files Browse the repository at this point in the history
  • Loading branch information
morganjwilliams committed Nov 2, 2022
1 parent 955089d commit 0031d15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
- xlrd
- openpyxl
- psutil
- matplotlib # note that 3.4+ is incompatible with mpltern <0.3.3
- matplotlib<3.6 # note that 3.4+ is incompatible with mpltern <0.3.3, 3.6 with mpltern >0.3.5?
- pytables
- scipy>=1.2 # uses scipy.optimize.Bounds, added around 1.2
- umap-learn
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from setuptools import find_packages, setup

import versioneer
from setuptools import find_packages, setup

tests_require = ["pytest", "pytest-runner", "pytest-cov", "coverage", "coveralls"]
docs_require = [
Expand Down Expand Up @@ -57,8 +56,8 @@
"typing-extensions", # required for newer tinydb versions?
"psutil",
"periodictable",
"matplotlib>=3.5", # tying updates between matplotlib and mpltern
"mpltern>=0.3.4", # tying updates between matplotlib and mpltern
"matplotlib<3.6", # tying updates between matplotlib and mpltern
"mpltern",
"scipy>=1.2", # uses scipy.optimize.Bounds, added around 1.2
"mpmath",
"sympy>=1.7",
Expand Down

0 comments on commit 0031d15

Please sign in to comment.