Skip to content

Commit 3a0edb3

Browse files
committed
fix: revised version pinning of setuptools
1 parent e5bb461 commit 3a0edb3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ jobs:
505505
python -m venv /tmp/sdist
506506
source /tmp/sdist/bin/activate
507507
python -m pip install -U pip
508-
python -m pip install "setuptools>=30.3.0" twine
508+
python -m pip install "setuptools>=40.8.0" twine
509509
- run:
510510
name: Build dMRIPrep
511511
command: |
@@ -540,7 +540,7 @@ jobs:
540540
python -m venv /tmp/wheel
541541
source /tmp/wheel/bin/activate
542542
python -m pip install -U pip
543-
python -m pip install "setuptools>=30.3.0" twine
543+
python -m pip install "setuptools>=40.8.0" twine
544544
THISVERSION=$( python get_version.py )
545545
THISVERSION=${THISVERSION%.dirty*}
546546
THISVERSION=${CIRCLE_TAG:-$THISVERSION}
@@ -568,7 +568,7 @@ jobs:
568568
python -m venv /tmp/sdist
569569
source /tmp/sdist/bin/activate
570570
python -m pip install -U pip
571-
python -m pip install "setuptools>=30.3.0" twine
571+
python -m pip install "setuptools>=40.8.0" wheel twine
572572
- run:
573573
name: Build dMRIPrep
574574
command: |

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
python-version: [3.7, 3.8]
1717
pip: ["pip~=18.1", "pip>=20.3"]
18-
setuptools: ["setuptools==38.4.1", "setuptools"]
18+
setuptools: ["setuptools==40.8.0", "setuptools"]
1919

2020
steps:
2121
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)