diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7d667e0cd..6ab2d5d09 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -40,6 +40,7 @@ body: - 3.9 - "3.10" - "3.11" + - "3.12" - type: dropdown id: streaming attributes: diff --git a/.github/workflows/streaming-tests.yml b/.github/workflows/streaming-tests.yml index 09e05b0e0..c72321633 100644 --- a/.github/workflows/streaming-tests.yml +++ b/.github/workflows/streaming-tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "windows-latest"] # TODO: update mac and streaming methods - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: s-weigand/setup-conda@v1 with: diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 78b8821e9..7c494e1ac 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macos-13", "windows-latest"] - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: conda-incubator/setup-miniconda@v3 with: diff --git a/docs/user_guide/installation.rst b/docs/user_guide/installation.rst index 2ce5e9de0..2800e8711 100644 --- a/docs/user_guide/installation.rst +++ b/docs/user_guide/installation.rst @@ -6,7 +6,7 @@ If you haven't checked it out already, please read the :nwb-overview:`NWB Overvi The NWBInspector tool offers convenient command-line usage via any standard Conda or Python terminal. -To install the package in any generic Python v3.8-v3.11 environment, simply type +To install the package in any generic Python v3.8-v3.12 environment, simply type :: diff --git a/setup.py b/setup.py index 2d50976fa..a0788c424 100644 --- a/setup.py +++ b/setup.py @@ -42,5 +42,6 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], )