File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -131,11 +131,9 @@ install:
131
131
# Check that we have the expected version and architecture for Python
132
132
- " python -c \" import struct, sys; print('{}\\ n{}-bit'.format(sys.version, struct.calcsize('P') * 8))\" "
133
133
134
- # Upgrade to the latest version of pip to avoid it displaying warnings
134
+ # Upgrade to the right version of pip to avoid it displaying warnings
135
135
# about it being out of date.
136
- - " python -m pip install --disable-pip-version-check --upgrade pip"
137
- # And upgrade virtualenv to get the latest pip inside .tox virtualenvs.
138
- - " python -m pip install --disable-pip-version-check --upgrade virtualenv"
136
+ - " python -m pip install --disable-pip-version-check -r requirements/pip.pip"
139
137
140
138
# Install requirements.
141
139
- " %CMD_IN_ENV% pip install -r requirements/ci.pip"
Original file line number Diff line number Diff line change 4
4
# Requirements for doing local development work on coverage.py.
5
5
# https://requires.io/github/nedbat/coveragepy/requirements/
6
6
7
- pip==20.0.2
8
- virtualenv==16.7.9
7
+ -r pip.pip
9
8
10
9
pluggy==0.13.1
11
10
Original file line number Diff line number Diff line change
1
+ # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
2
+ # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
3
+
4
+ pip==20.0.2
5
+ virtualenv==16.7.9
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ extras =
14
14
deps =
15
15
# Check here for what might be out of date:
16
16
# https://requires.io/github/nedbat/coveragepy/requirements/
17
+ -r requirements/pip.pip
17
18
-r requirements/pytest.pip
18
- pip ==20.0.2
19
19
setuptools ==41.4.0
20
20
# gevent 1.3 causes a failure: https://github.com/nedbat/coveragepy/issues/663
21
21
py{27,35,36}: gevent ==1.2.2
You can’t perform that action at this time.
0 commit comments