Skip to content

Commit

Permalink
Fix #856: mtools[mlaunch] does not install with pymongo 4
Browse files Browse the repository at this point in the history
  • Loading branch information
stennie committed Apr 12, 2022
1 parent f72f904 commit 59130bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
# simplify the default install experience, particularly where a build
# toolchain is required.
extras_requires = {
"all": ['numpy>=1.21.4', 'matplotlib>=3.5.0', 'pymongo>=3.12.2,<4.0.0',
"all": ['numpy>=1.21.4', 'matplotlib>=3.5.0', 'pymongo>=3.12.2,<5.0.0',
'psutil>=5.8.0'],
"mlaunch": ['pymongo>=3.12.2,<4.0.0', 'psutil>=5.8.0'],
"mlaunch": ['pymongo>=3.12.2,<5.0.0', 'psutil>=5.8.0'],
"mlogfilter": [],
"mloginfo": ['numpy>=1.21.4'],
"mplotqueries": ['numpy>=1.21.4', 'matplotlib>=3.5.0'],
"mtransfer": ['pymongo>=3.12.2,<4.0.0', 'wiredtiger>=3.2.1'],
"mtransfer": ['pymongo>=3.12.2,<5.0.0', 'wiredtiger>=3.2.1'],
}

install_requires = []
Expand Down

0 comments on commit 59130bf

Please sign in to comment.