From 8174c2fdd5c25a3d1d8707544614ea69a31285b1 Mon Sep 17 00:00:00 2001 From: William Silversmith Date: Wed, 31 Jan 2024 20:17:13 -0500 Subject: [PATCH] ci: see if this fixes testing --- .github/workflows/test.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2c5f894..646c6f1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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: |