From ce7b3650d10641d8a21fd87d199f5c310ac40ac0 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Fri, 8 Dec 2023 16:09:28 +0000 Subject: [PATCH 1/2] support python 3.12 --- .github/workflows/test.yml | 4 ++-- pyproject.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a1d8b33..e79f57d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [3.7, 3.11] + python: [3.7, 3.12] steps: - uses: actions/checkout@v4 with: {fetch-depth: 0} @@ -41,7 +41,7 @@ jobs: runs-on: [self-hosted, cuda, python] strategy: matrix: - python: [3.7, 3.11] + python: [3.7, 3.12] steps: - uses: actions/checkout@v4 with: {fetch-depth: 0} diff --git a/pyproject.toml b/pyproject.toml index 0acc845..d0156b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,6 +47,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", From 0fea48f6d2d1e16b103a08392309ab2eae7902d4 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Fri, 8 Dec 2023 21:46:26 +0000 Subject: [PATCH 2/2] Revert "tests: fix CUDA driver incompatibility" This reverts commit 15d791801f0d3746f401baa9e5cd8bf998870f7f. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e79f57d..cb39d7b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,7 +46,7 @@ jobs: - uses: actions/checkout@v4 with: {fetch-depth: 0} - name: Run setup-python - run: setup-python -p${{ matrix.python }} 'cuda-version<12' 'cupy<13' + run: setup-python -p${{ matrix.python }} cupy - name: pip install -U -e .[dev] run: make CXX_FLAGS='' deps-build build-editable deps-run - run: make test