From 30dbb7c714f1580f83f8b8067e05f5a3eb3129d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20=C5=9Aliwi=C5=84ski?= Date: Thu, 15 Dec 2022 16:38:37 +0100 Subject: [PATCH] Add Python 3.11 to the trove classifiers and CI --- .github/workflows/tests-macos.yml | 2 +- .github/workflows/tests.yml | 2 +- newsfragments/111.feature.rst | 1 + pyproject.toml | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 newsfragments/111.feature.rst diff --git a/.github/workflows/tests-macos.yml b/.github/workflows/tests-macos.yml index 4832872..5ef0275 100644 --- a/.github/workflows/tests-macos.yml +++ b/.github/workflows/tests-macos.yml @@ -19,7 +19,7 @@ jobs: tests: uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v1.6.3 with: - python-versions: '["3.7", "3.8", "3.9", "3.10", "pypy-3.8"]' + python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"]' os: macos-latest pipenv: true pipenv-install-options: --skip-lock diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9bbd66e..ea2798a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,6 +14,6 @@ jobs: tests: uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v1.6.3 with: - python-versions: '["3.7", "3.8", "3.9", "3.10", "pypy-3.8"]' + python-versions: '["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"]' pipenv: true pipenv-install-options: --skip-lock diff --git a/newsfragments/111.feature.rst b/newsfragments/111.feature.rst new file mode 100644 index 0000000..9c3483a --- /dev/null +++ b/newsfragments/111.feature.rst @@ -0,0 +1 @@ +Add python 3.11 to the list of supported python versions. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e4ecbd5..83d8e5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: POSIX", "Topic :: System :: Installation/Setup", "Topic :: System :: Systems Administration",