Skip to content

Commit

Permalink
CICD: Explicitely install setuptools for 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
RUrlus committed Dec 27, 2023
1 parent 655e5a5 commit d52a965
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Add requirements
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade pip wheel "setuptools>=68"
- name: Build and install
run: pip install --verbose ".[test]"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install . -v
pip install "pytest>=4.0.2" "pytest-pylint>=0.13.0"
pip install "pytest>=4.0.2" "pytest-pylint>=0.13.0" "setuptools>=68"
- name: Test with pytest
run: |
cd tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: actions/setup-python@v4

- name: Install cibuildwheel
run: python -m pip install cibuildwheel
run: python -m pip install cibuildwheel "setuptools>=68"

- name: Build wheel
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down

0 comments on commit d52a965

Please sign in to comment.