From 53afb0876172d0ae5f28413aa32480f55b748ea7 Mon Sep 17 00:00:00 2001 From: Metin San Date: Thu, 21 Mar 2024 10:24:12 +0900 Subject: [PATCH] Add python 3.12 version classifier since this was not auto detected by poetry/pypi, and add python 3.12 to test workflow --- .github/workflows/tests.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 428b9ce..7b70952 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-versions: ['3.8', '3.9', '3.10', '3.11'] + python-versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index f334f5e..1062c53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,11 +7,11 @@ authors = ["Metin San "] readme = "README.md" license = "GPL-3.0" exclude = ["test.py"] -requires-python = ">=3.8" classifiers = [ "Intended Audience :: Science/Research", "Operating System :: OS Independent", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Astronomy", "Topic :: Scientific/Engineering :: Physics", ]