Skip to content

Commit

Permalink
Fix #892: Min version of matplotlib should be 3.5 for Python 3.7 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
stennie committed Oct 27, 2022
1 parent 4905bc4 commit 9bbf329
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ordereddict>=1.1
python-dateutil>=2.8.2,<3.0.0
numpy>=1.21.6
matplotlib>=3.6.1,<4.0.0
matplotlib>=3.5.3,<4.0.0
packaging>=21.3
pymongo>=4.3.2,<5.0.0
psutil>=5.9.3,<6.0.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
# toolchain is required.
base_extras_requires = ['python-dateutil>=2.8.2,<3.0.0']
extras_requires = {
"all": ['numpy>=1.21.6', 'matplotlib>=3.6.1,<4.0.0', 'pymongo>=4.3.2,<5.0.0',
"all": ['numpy>=1.21.6', 'matplotlib>=3.5.3,<4.0.0', 'pymongo>=4.3.2,<5.0.0',
'psutil>=5.9.3,<6.0.0', 'packaging>=21.3'] + base_extras_requires,
"mlaunch": ['pymongo>=4.3.2,<5.0.0', 'psutil>=5.9.3,<6.0.0', 'packaging>=21.3'] + base_extras_requires,
"mlogfilter": base_extras_requires.copy(),
"mloginfo": ['numpy>=1.21.6'] + base_extras_requires,
"mplotqueries": ['numpy>=1.21.6', 'matplotlib>=3.6.1,<4.0.0'] + base_extras_requires,
"mplotqueries": ['numpy>=1.21.6', 'matplotlib>=3.5.3,<4.0.0'] + base_extras_requires,
"mtransfer": ['pymongo>=4.3.2,<5.0.0', 'wiredtiger>=3.2.1'] + base_extras_requires,
}

Expand Down

0 comments on commit 9bbf329

Please sign in to comment.