From 22a0c459bf3117ab0bba3c4d9e3ec9ac6b045458 Mon Sep 17 00:00:00 2001 From: Artem Rys Date: Mon, 9 Oct 2023 12:59:51 +0200 Subject: [PATCH] feat: onboard Python 3.12 --- .github/workflows/build-test-release.yml | 1 + pyproject.toml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index f6110315..882cc5c7 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -82,6 +82,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 diff --git a/pyproject.toml b/pyproject.toml index 06cff938..5325c4b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,21 @@ description = "The Splunk Software Development Kit for Splunk Solutions" authors = ["Splunk "] license = "Apache-2.0" repository = "https://github.com/splunk/addonfactory-solutions-library-python" +classifiers = [ + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.7", + "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", + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Topic :: Software Development :: Libraries :: Python Modules", + "License :: OSI Approved :: Apache Software License" +] [tool.poetry.dependencies] python = "^3.7"