From 6a5c15687560619529743896b33ad2ee7e21ab50 Mon Sep 17 00:00:00 2001 From: Nicholas McDonnell <50747025+mcdonnnj@users.noreply.github.com> Date: Sat, 29 Oct 2022 06:53:04 -0400 Subject: [PATCH 1/2] Add support for Python 3.11 With the release of Python 3.11 on 2022-10-24 we should add it to our supported Python versions. This includes an appropriate PyPI trove classifier and adding it to the Python versions that are tested in our GitHub Actions workflow. --- .github/workflows/build.yml | 3 +++ setup.py | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94c9569..2d91593 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -114,6 +114,7 @@ jobs: - "3.8" - "3.9" - "3.10" + - "3.11" include: - os: ubuntu-20.04 python-version: "3.6" @@ -208,6 +209,7 @@ jobs: - "3.8" - "3.9" - "3.10" + - "3.11" include: - os: ubuntu-20.04 python-version: "3.6" @@ -259,6 +261,7 @@ jobs: - "3.8" - "3.9" - "3.10" + - "3.11" include: - os: ubuntu-20.04 python-version: "3.6" diff --git a/setup.py b/setup.py index 106a1fb..f417c83 100644 --- a/setup.py +++ b/setup.py @@ -80,6 +80,7 @@ def get_version(version_file): "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", ], python_requires=">=3.6", From abd6218987345384203aae1207b8dfb2fdeae3d5 Mon Sep 17 00:00:00 2001 From: Nicholas McDonnell <50747025+mcdonnnj@users.noreply.github.com> Date: Sat, 7 Jan 2023 15:41:40 -0500 Subject: [PATCH 2/2] Bump version from 0.1.0 to 0.2.0 --- src/example/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/example/_version.py b/src/example/_version.py index 5eb9b0e..6baaa6f 100644 --- a/src/example/_version.py +++ b/src/example/_version.py @@ -1,2 +1,2 @@ """This file defines the version of this module.""" -__version__ = "0.1.0" +__version__ = "0.2.0"