Skip to content

Commit

Permalink
update tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBlanke committed Aug 15, 2024
1 parent 95d270e commit ce6323b
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ jobs:
build:
strategy:
matrix:
version: [10, 12, 14]
os: [ubuntu-latest, windows-latest]

fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
numpy-pandas-version: [">=1.0, <2.0", ">=2.0, <3.0"]
exclude:
- python-version: "3.8"
numpy-pandas-version: ">=2.0, <3.0"
fail-fast: false

runs-on: ${{ matrix.os }}

Expand All @@ -40,7 +41,9 @@ jobs:
make install-build-requirements
make install-test-requirements
make install
python -m pip install --upgrade pandas # surfaces install pandas < 2
python -m pip install "numpy ${{ matrix.numpy-pandas-version }}"
python -m pip install "pandas ${{ matrix.numpy-pandas-version }}"
- name: Lint with flake8
run: |
Expand Down

0 comments on commit ce6323b

Please sign in to comment.