Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 14216a9

Browse files
authored
Merge pull request #9673 from anntzer/dontlistdepsonci
On CI, just let pip resolve most dependencies.
2 parents bb8969b + a747507 commit 14216a9

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.appveyor.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,8 @@ install:
8686
#
8787
# n.b. pandas is pinned to <0.21 due to issue 9610
8888
- conda create -q -n test-environment python=%PYTHON_VERSION%
89-
pip setuptools numpy python-dateutil freetype=2.6 msinttypes "tk=8.5"
90-
pyparsing pytz tornado "libpng>=1.6.21,<1.7" "zlib=1.2" "cycler>=0.10"
91-
mock sphinx "pandas<0.21.0"
89+
msinttypes freetype=2.6 "libpng>=1.6.21,<1.7" zlib=1.2 tk=8.5
90+
pip setuptools numpy mock "pandas<0.21.0" sphinx tornado
9291
- activate test-environment
9392
- echo %PYTHON_VERSION% %TARGET_ARCH%
9493
- if %PYTHON_VERSION% == 2.7 conda install -q backports.functools_lru_cache

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pip-run: &pip-install
5959
deps-run: &deps-install
6060
name: Install Python dependencies
6161
command: |
62-
pip install --user python-dateutil numpy${NUMPY_VERSION} pyparsing!=2.1.6 cycler codecov coverage sphinx pillow
62+
pip install --user numpy${NUMPY_VERSION} codecov coverage
6363
pip install --user -r doc-requirements.txt
6464
6565
mpl-run: &mpl-install

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,7 @@ install:
116116
$PANDAS \
117117
codecov \
118118
coverage \
119-
cycler \
120119
pillow \
121-
pyparsing!=2.1.6 \
122-
python-dateutil \
123120
sphinx
124121
# GUI toolkits are pip-installable only for some versions of Python so
125122
# don't fail if we can't install them. Make it easier to check whether the

0 commit comments

Comments
 (0)