From 656d37f713f37f8b2ae9ceb031cc06b5c3512b4c Mon Sep 17 00:00:00 2001 From: John Gerrard Holland Date: Wed, 8 Nov 2023 11:38:14 -0500 Subject: [PATCH 1/2] test: run tests under python 3.12 as well --- .github/workflows/test-pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-pytest.yml b/.github/workflows/test-pytest.yml index 4c7aeab7..2993a2bd 100644 --- a/.github/workflows/test-pytest.yml +++ b/.github/workflows/test-pytest.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: From 7a3c5e45459f2d6358097801973608f98867d524 Mon Sep 17 00:00:00 2001 From: John Gerrard Holland Date: Wed, 8 Nov 2023 13:51:39 -0500 Subject: [PATCH 2/2] chore: add project classifiers including supported python versions --- pyproject.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d4fdefb6..16c2f39a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,6 +10,25 @@ license = {file = "LICENSE"} requires-python = ">=3.8,<4" dynamic = ["version"] +classifiers = [ # Optional + "Development Status :: 5 - Production/Stable", + + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + + "License :: OSI Approved :: MIT License", + + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "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 :: Scientific/Engineering :: Artificial Intelligence" +] + dependencies = [ "numpy", "matplotlib",