Skip to content

Commit

Permalink
CI: don't pin setuptools in the regular test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
WarrenWeckesser committed Aug 9, 2023
1 parent e06ff13 commit 2938c0d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ on: [push, pull_request]
jobs:
tests:
strategy:
max-parallel: 4
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.11', '3.10', '3.9', '3.8']
numpy-version: ['1.20.3', '1.21.6', '1.22.4', '1.23.5', '1.24.4', '1.25.2']
os: [ubuntu-latest, macos-11, macos-12]
exclude:
Expand All @@ -33,7 +32,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade setuptools==59.2.0
python -m pip install --upgrade setuptools
python -m pip install pytest
python -m pip install numpy==${{ matrix.numpy-version }}
- name: Install ufunclab
Expand Down

0 comments on commit 2938c0d

Please sign in to comment.