From 1bb65aae0623006d819f00deff57f6eed7005b90 Mon Sep 17 00:00:00 2001 From: chrishavlin Date: Mon, 13 Nov 2023 16:25:36 -0600 Subject: [PATCH 1/2] add 3.11, unpin scipy in tests --- .github/workflows/build-test.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index 79055f2..a5587e7 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10'] + python-version: ['3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2 @@ -20,7 +20,6 @@ jobs: run: | sudo apt-get install libopenblas-dev python -m pip install --upgrade pip - python -m pip install scipy==1.8.0 - name: Setup pyVBRc run: | python -m pip install -e .[dev] From edf37b244c7f434e3705b7ffe3ee915b4cebfe6f Mon Sep 17 00:00:00 2001 From: chrishavlin Date: Mon, 13 Nov 2023 16:28:12 -0600 Subject: [PATCH 2/2] add 3.11 explicitly to pyproject --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index c5e6914..287c31f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ classifiers=[ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ] dependencies=["numpy", "scipy",