Skip to content

Commit

Permalink
Fix #891: Min version of numpy should be 1.21.6 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 2304502 commit 4905bc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ordereddict>=1.1
python-dateutil>=2.8.2,<3.0.0
numpy>=1.23.4
numpy>=1.21.6
matplotlib>=3.6.1,<4.0.0
packaging>=21.3
pymongo>=4.3.2,<5.0.0
Expand Down
6 changes: 3 additions & 3 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.23.4', 'matplotlib>=3.6.1,<4.0.0', 'pymongo>=4.3.2,<5.0.0',
"all": ['numpy>=1.21.6', 'matplotlib>=3.6.1,<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.23.4'] + base_extras_requires,
"mplotqueries": ['numpy>=1.23.4', 'matplotlib>=3.6.1,<4.0.0'] + base_extras_requires,
"mloginfo": ['numpy>=1.21.6'] + base_extras_requires,
"mplotqueries": ['numpy>=1.21.6', 'matplotlib>=3.6.1,<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 4905bc4

Please sign in to comment.