File tree 7 files changed +11
-8
lines changed
7 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 85
85
set -xe
86
86
python -VV
87
87
python -m site
88
- python -m pip install --require-hashes - r requirements/tox.pip
88
+ python -m pip install -r requirements/tox.pip
89
89
90
90
- name : " Run tox coverage for ${{ matrix.python-version }}"
91
91
env :
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ jobs:
155
155
156
156
- name : " Install tools"
157
157
run : |
158
- python -m pip install --require-hashes - r requirements/kit.pip
158
+ python -m pip install -r requirements/kit.pip
159
159
160
160
- name : " Build wheels"
161
161
env :
@@ -192,7 +192,7 @@ jobs:
192
192
193
193
- name : " Install tools"
194
194
run : |
195
- python -m pip install --require-hashes - r requirements/kit.pip
195
+ python -m pip install -r requirements/kit.pip
196
196
197
197
- name : " Build sdist"
198
198
run : |
Original file line number Diff line number Diff line change 81
81
82
82
- name : " Install dependencies"
83
83
run : |
84
- python -m pip install --require-hashes - r requirements/tox.pip
84
+ python -m pip install -r requirements/tox.pip
85
85
86
86
- name : " Run tox"
87
87
run : |
Original file line number Diff line number Diff line change 46
46
47
47
- name : " Install dependencies"
48
48
run : |
49
- python -m pip install --require-hashes - r requirements/tox.pip
49
+ python -m pip install -r requirements/tox.pip
50
50
51
51
- name : " Tox lint"
52
52
run : |
97
97
set -xe
98
98
python -VV
99
99
python -m site
100
- python -m pip install --require-hashes - r requirements/tox.pip
100
+ python -m pip install -r requirements/tox.pip
101
101
102
102
- name : " Tox doc"
103
103
run : |
Original file line number Diff line number Diff line change 73
73
set -xe
74
74
python -VV
75
75
python -m site
76
- python -m pip install --require-hashes - r requirements/tox.pip
76
+ python -m pip install -r requirements/tox.pip
77
77
# For extreme debugging:
78
78
# python -c "import urllib.request as r; exec(r.urlopen('https://bit.ly/pydoctor').read())"
79
79
Original file line number Diff line number Diff line change @@ -25,8 +25,11 @@ Unreleased
25
25
dramatically smaller. This closes `issue 1584 `_ thanks to `Oleh Krehel
26
26
<pull 1587_> `_.
27
27
28
+ - Development dependencies no longer use hashed pins, closing `issue 1592 `_.
29
+
28
30
.. _issue 1584 : https://github.com/nedbat/coveragepy/issues/1584
29
31
.. _pull 1587 : https://github.com/nedbat/coveragepy/pull/1587
32
+ .. _issue 1592 : https://github.com/nedbat/coveragepy/issues/1592
30
33
31
34
32
35
.. scriv-start-here
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ metasmoke:
85
85
86
86
.PHONY : upgrade
87
87
88
- PIP_COMPILE = pip-compile --upgrade --allow-unsafe --generate-hashes -- resolver=backtracking
88
+ PIP_COMPILE = pip-compile --upgrade --allow-unsafe --resolver=backtracking
89
89
upgrade : export CUSTOM_COMPILE_COMMAND=make upgrade
90
90
upgrade : # # Update the *.pip files with the latest packages satisfying *.in files.
91
91
pip install -q -r requirements/pip-tools.pip
You can’t perform that action at this time.
0 commit comments