Skip to content

Commit 0adceb8

Browse files
committed
fix: update setuptools pinning for CircleCI
1 parent d73b5a6 commit 0adceb8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
name: Prepare a Python environment
4646
command: |
4747
pyenv local 3.7.0
48-
python3 -m pip install "setuptools ~= 42.0" "setuptools_scm[toml] >= 3.4" "pip>=10.0.1"
48+
python3 -m pip install "setuptools >= 45.0" "setuptools_scm[toml] >= 3.4" "pip>=10.0.1"
4949
- run:
5050
name: Build Docker image & push to registry
5151
no_output_timeout: 60m
@@ -154,7 +154,7 @@ jobs:
154154
command: |
155155
python3 -m venv /tmp/buildenv
156156
source /tmp/buildenv/bin/activate
157-
python3 -m pip install "setuptools ~= 42.0" wheel "setuptools_scm[toml] >= 3.4" \
157+
python3 -m pip install "setuptools >= 45.0" wheel "setuptools_scm[toml] >= 3.4" \
158158
"pip>=10.0.1" twine docutils
159159
python setup.py sdist bdist_wheel
160160
twine check dist/nitransforms*
@@ -168,7 +168,7 @@ jobs:
168168
command: |
169169
python3 -m venv /tmp/install_sdist
170170
source /tmp/install_sdist/bin/activate
171-
python3 -m pip install "setuptools ~= 42.0" "pip>=10.0.1"
171+
python3 -m pip install "setuptools >= 45.0" "pip>=10.0.1"
172172
173173
THISVERSION=$( python3 setup.py --version )
174174
THISVERSION=${CIRCLE_TAG:-$THISVERSION}
@@ -182,7 +182,7 @@ jobs:
182182
command: |
183183
python3 -m venv /tmp/install_wheel
184184
source /tmp/install_wheel/bin/activate
185-
python3 -m pip install "setuptools ~= 42.0" "pip>=10.0.1"
185+
python3 -m pip install "setuptools >= 45.0" "pip>=10.0.1"
186186
187187
THISVERSION=$( python3 setup.py --version )
188188
THISVERSION=${CIRCLE_TAG:-$THISVERSION}

0 commit comments

Comments
 (0)