From 0178b1c68046f9269bb0c367bbbc979f56a65657 Mon Sep 17 00:00:00 2001 From: Remi Gau Date: Thu, 14 Dec 2023 03:53:28 +0100 Subject: [PATCH] [MAINT] run test suite with python 3.12 (#57) * test with python 3.12 * update metadata * add setuptools --- .github/workflows/test.yml | 2 +- pyproject.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 89127bc..e8c07a8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -135,7 +135,7 @@ jobs: needs: [build, download-test-data, check_skip_flags] strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2 name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 7a4b674..66c5fa3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] dependencies = [ "h5py", @@ -24,6 +25,7 @@ dependencies = [ "pybids >=0.15.0, <0.16.0", "templateflow < 23.0.0", "tqdm", + "setuptools", ] dynamic = ["version"]