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

Skip to content

Commit 4cd31dd

Browse files
authored
Merge pull request #16536 from tacaswell/api_tst_min_versions
API/TST: minimum versions
2 parents f751eda + 410df49 commit 4cd31dd

File tree

8 files changed

+10
-12
lines changed

8 files changed

+10
-12
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ environment:
2626
- PYTHON_VERSION: "3.6"
2727
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
2828
TEST_ALL: "no"
29-
EXTRAREQS: "-r requirements/testing/travis36.txt"
29+
EXTRAREQS: "-r requirements/testing/travis_extra.txt"
3030
- PYTHON_VERSION: "3.7"
3131
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
3232
TEST_ALL: "no"

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,12 @@ matrix:
7777
env:
7878
- PINNEDVERS='-c requirements/testing/travis36minver.txt'
7979
- DELETE_FONT_CACHE=1
80-
- EXTRAREQS='-r requirements/testing/travis36.txt'
8180
- python: 3.7
81+
env:
82+
- EXTRAREQS='-r requirements/testing/travis_extra.txt'
8283
- python: 3.8
84+
env:
85+
- EXTRAREQS='-r requirements/testing/travis_extra.txt'
8386
- python: "nightly"
8487
env:
8588
- PRE=--pre

INSTALL.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Matplotlib requires the following dependencies:
114114
* `dateutil <https://pypi.org/project/python-dateutil>`_ (>= 2.1)
115115
* `kiwisolver <https://github.com/nucleic/kiwi>`_ (>= 1.0.0)
116116
* `Pillow <https://pillow.readthedocs.io/en/latest/>`_ (>= 6.2)
117-
* `pyparsing <https://pyparsing.wikispaces.com/>`_
117+
* `pyparsing <https://pyparsing.wikispaces.com/>`_ (>=2.0.3)
118118

119119
Optionally, you can also install a number of packages to enable better user
120120
interface toolkits. See :ref:`what-is-a-backend` for more details on the

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ steps:
9494

9595
- bash: |
9696
python -m pip install --upgrade pip
97-
python -m pip install -r requirements/testing/travis_all.txt -r requirements/testing/travis36.txt ||
97+
python -m pip install -r requirements/testing/travis_all.txt -r requirements/testing/travis_extra.txt ||
9898
[[ "$PYTHON_VERSION" = 'Pre' ]]
9999
displayName: 'Install dependencies with pip'
100100

requirements/testing/travis36minver.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
cycler==0.10
44
python-dateutil==2.1
55
numpy==1.15.0
6-
pyparsing==2.0.1
6+
pyparsing==2.0.3

requirements/testing/travis_all.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
# pip requirements for all the travis builds
22

33
coverage
4-
cycler
5-
numpy
6-
pillow
7-
pyparsing
84
pytest!=4.6.0
95
pytest-cov
106
pytest-rerunfailures
117
pytest-timeout
128
pytest-xdist
139
python-dateutil
1410
tornado
15-
tox

requirements/testing/travis36.txt renamed to requirements/testing/travis_extra.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Extra pip requirements for the travis python 3.6 build
1+
# Extra pip requirements for the travis python 3.7+ builds
22

33
ipykernel
44
nbconvert[execute]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def run(self):
262262
"kiwisolver>=1.0.1",
263263
"numpy>=1.15",
264264
"pillow>=6.2.0",
265-
"pyparsing>=2.0.1,!=2.0.4,!=2.1.2,!=2.1.6",
265+
"pyparsing>=2.0.3,!=2.0.4,!=2.1.2,!=2.1.6",
266266
"python-dateutil>=2.1",
267267
],
268268

0 commit comments

Comments
 (0)