Skip to content

Commit

Permalink
Pin requirements to avoid pulling in breaking changes (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
stennie authored and sindbach committed Jun 25, 2018
1 parent 8ca2a3e commit 4bccf42
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ordereddict==1.1
python-dateutil>=2.7
python-dateutil==2.7
matplotlib==1.3.1
numpy==1.8.0
pymongo>=3.3.0
psutil>=5.4.2
pymongo==3.6
psutil==5.4
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
from setuptools import setup, find_packages

# test for 2.7-included packages, add to requirements if not available
install_requires = ['six', 'python-dateutil>=2.7']
install_requires = ['six', 'python-dateutil==2.7']

# Additional dependencies from requirements.txt that should be installed
# for full mtools feature support. These are optional dependencies to
# simplify the default install experience, particularly where a build
# toolchain is required.
extras_requires = {
"all": ['matplotlib>=1.3.1', 'numpy>=1.8.0', 'pymongo>=3.3', 'psutil>=5.4.2'],
"mlaunch": ['pymongo>=3.3', 'psutil>=5.4.2'],
"all": ['matplotlib==1.3.1', 'numpy==1.8.0', 'pymongo==3.6', 'psutil==5.4'],
"mlaunch": ['pymongo==3.6', 'psutil==5.4'],
"mlogfilter": [],
"mloginfo": ['numpy>=1.8.0'],
"mloginfo": ['numpy==1.8.0'],
"mlogvis": [],
"mplotqueries": ['matplotlib>=1.3.1', 'numpy>=1.8.0'],
"mplotqueries": ['matplotlib==1.3.1', 'numpy==1.8.0'],
}

try:
Expand Down

0 comments on commit 4bccf42

Please sign in to comment.