Skip to content

Commit

Permalink
ci: simpler "Install dependencies" and new python
Browse files Browse the repository at this point in the history
  • Loading branch information
nauaneed committed Sep 24, 2024
1 parent 5594d28 commit a5c303f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.10', '3.11']
python-version: ['3.11', '3.12']

env:
USE_TRILINOS: 1
Expand All @@ -28,9 +28,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install numpy 'cython<3.0'
python -m pip install -r requirements.txt
python setup.py develop
pip install --upgrade pip setuptools wheel
pip install "mpi4py<4.0"
pip install -e .[tests] -v --no-build-isolation
- name: Run tests
run: pytest -v pyzoltan

0 comments on commit a5c303f

Please sign in to comment.