Skip to content

Commit

Permalink
ci: see if this fixes testing
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Feb 1, 2024
1 parent 1a043c4 commit 8174c2f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand All @@ -24,11 +24,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
env:
BUILD_WITH_CYTHON: 1 # for pysimdjson
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt pytest cython numpy
pip install cython numpy setuptools wheel
pip install -r requirements.txt pytest
pip install -e .
- name: Test with pytest
run: |
Expand Down

0 comments on commit 8174c2f

Please sign in to comment.