From 23f55ea7f419e151058763cfe460223dc989d7af Mon Sep 17 00:00:00 2001 From: Iurii Pliner Date: Tue, 21 May 2024 12:02:25 +0100 Subject: [PATCH] Add python 3.12 to CI and announce its support --- .github/workflows/ci.yml | 6 +++--- setup.py | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebb3b60..1a71595 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 @@ -45,10 +45,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Setup Python 3.11 + - name: Setup Python 3.12 uses: actions/setup-python@v3 with: - python-version: "3.11" + python-version: "3.12" - name: Install dependencies run: python -m pip install -U pip wheel twine diff --git a/setup.py b/setup.py index aab3835..0b3b024 100644 --- a/setup.py +++ b/setup.py @@ -62,6 +62,7 @@ def read_version(): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Operating System :: OS Independent", "Development Status :: 5 - Production/Stable", "Framework :: Pytest"