Skip to content

Commit

Permalink
Merge pull request #698 from gliptak/travis2
Browse files Browse the repository at this point in the history
Make requirements more specific
  • Loading branch information
bashtage committed Sep 19, 2019
2 parents b74b1e8 + 0724f99 commit 17f5818
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 19 deletions.
10 changes: 4 additions & 6 deletions ci/pypi-install.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
#!/usr/bin/env bash

pip install pip --upgrade
pip install numpy=="$NUMPY" pytz python-dateutil coverage setuptools html5lib lxml pytest pytest-cov wrapt codecov coveralls beautifulsoup4 isort flake8

if (( $(echo "$TRAVIS_PYTHON_VERSION > 3.5" | bc -l) )); then
pip install black flake8-bugbear
fi
pip install numpy=="$NUMPY" lxml
pip install -r requirements-dev.txt

if [[ "$PANDAS" == "MASTER" ]]; then
PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com"
Expand All @@ -15,5 +12,6 @@ else
fi

if [[ "$DOCBUILD" ]]; then
pip install sphinx ipython matplotlib sphinx_rtd_theme doctr requests_cache
pip install doctr
pip install -r docs/requirements.txt
fi
8 changes: 3 additions & 5 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
lxml
pandas>=0.21
requests>=2.3.0
wrapt
sphinx
ipython
matplotlib
sphinx_rtd_theme
requests_cache
sphinx
15 changes: 9 additions & 6 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ipython
requests_cache
sphinx
sphinx_rtd_theme
black
isort
black; python_version > '3.5'
flake8-bugbear; python_version > '3.5'
coverage
codecov
coveralls
flake8
pytest
pytest-cov
wrapt
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
lxml
pandas>=0.21
pytest>=4.0.2
requests>=2.3.0
wrapt

0 comments on commit 17f5818

Please sign in to comment.