Skip to content

Commit

Permalink
Merge pull request #224 from pberkes/numpy-matrix
Browse files Browse the repository at this point in the history
Add to the matrix Python==3.12, numpy==1.26.4
  • Loading branch information
otizonaizit authored Jan 10, 2025
2 parents 0fec2d9 + 7191285 commit 065b93c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@ on:

jobs:
test:
name: ${{ matrix.os}} / py${{ matrix.python_version }}
name: ${{ matrix.os}} / py${{ matrix.python_version }} / numpy${{ matrix.numpy_version }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [Ubuntu]
python_version: ['3.10', '3.11', '3.12', '3.13']
numpy_version: ['2.*']
include:
- python_version: '3.12'
numpy_version: '1.26.4'
os: 'Ubuntu'
steps:
- uses: actions/checkout@v4

Expand All @@ -30,6 +35,9 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools
pip install pytest
- name: Install numpy version ${{ matrix.numpy_version }}
run: |
pip install numpy==${{ matrix.numpy_version }}
- name: Install psignifit to be tested
run: |
pip install .
Expand Down

0 comments on commit 065b93c

Please sign in to comment.