We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 211be71 commit fbe388dCopy full SHA for fbe388d
.github/workflows/tests.yml
@@ -7,7 +7,7 @@ jobs:
7
strategy:
8
matrix:
9
os: [ubuntu-latest]
10
- python-version: ['3.10', '3.11']
+ python-version: ['3.11', '3.12']
11
12
env:
13
USE_TRILINOS: 1
@@ -28,9 +28,9 @@ jobs:
28
python-version: ${{ matrix.python-version }}
29
- name: Install dependencies
30
run: |
31
- python -m pip install --upgrade pip setuptools wheel
32
- python -m pip install numpy 'cython<3.0'
33
- python -m pip install -r requirements.txt
34
- python setup.py develop
+ pip install --upgrade pip setuptools wheel
+ pip install https://github.com/pypr/cyarray/zipball/master
+ pip install -r requirements.txt
+ pip install -e .[tests] -v --no-build-isolation
35
- name: Run tests
36
run: pytest -v pyzoltan
0 commit comments