Skip to content

Commit

Permalink
Pin the version of setuptools used
Browse files Browse the repository at this point in the history
  • Loading branch information
movermeyer committed Nov 10, 2024
1 parent 1388c8b commit 08f4a50
Showing 1 changed file with 21 additions and 14 deletions.
35 changes: 21 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,14 @@ workflows:
workflow:
jobs:
- test_python_34
- test_old_pythons:
matrix:
parameters:
python_version: ["2.7", "3.5", "3.6", "3.7"]
- test:
matrix:
parameters:
python_version:
[
"2.7",
"3.5",
"3.6",
"3.7",
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
- test_pypy:
matrix:
parameters:
Expand All @@ -39,7 +31,7 @@ jobs:
docker:
- image: circleci/python:3.4

test:
test_old_pythons:
parameters:
python_version:
type: string
Expand All @@ -51,6 +43,21 @@ jobs:
docker:
- image: cimg/python:<<parameters.python_version>>

test:
parameters:
python_version:
type: string
steps:
- checkout
- run:
name: Test
# setuptools dropped support for being a test runner in v72.0.0
command: |
pip install --force-reinstall 'setuptools==71.1.0'
python setup.py test
docker:
- image: cimg/python:<<parameters.python_version>>

test_pypy:
parameters:
python_version:
Expand Down

0 comments on commit 08f4a50

Please sign in to comment.