Skip to content

Commit 8174c2f

Browse files
ci: see if this fixes testing
1 parent 1a043c4 commit 8174c2f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/test.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -24,11 +24,10 @@ jobs:
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install dependencies
27-
env:
28-
BUILD_WITH_CYTHON: 1 # for pysimdjson
2927
run: |
3028
python -m pip install --upgrade pip
31-
pip install -r requirements.txt pytest cython numpy
29+
pip install cython numpy setuptools wheel
30+
pip install -r requirements.txt pytest
3231
pip install -e .
3332
- name: Test with pytest
3433
run: |

0 commit comments

Comments
 (0)