From e0b7a0ee76333453dc132901e634b636a47c9931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=BBmuda?= Date: Thu, 15 Feb 2024 19:00:52 +0100 Subject: [PATCH] Fixed GitHub Actions build (python 3.5 & 3.6 no longer available). --- .github/workflows/tox-tests.yml | 2 +- CHANGELOG.rst | 1 + setup.py | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tox-tests.yml b/.github/workflows/tox-tests.yml index cca4c3a..f34664d 100644 --- a/.github/workflows/tox-tests.yml +++ b/.github/workflows/tox-tests.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11.0-alpha - 3.11'] + python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 543a3ee..fb4edde 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,7 @@ ----- * Fixed redundant waring if `tornado` is not available to be used (silenced). +* Fixed GitHub Actions build (python 3.5 & 3.6 no longer available). 1.1.3 ----- diff --git a/setup.py b/setup.py index 681663c..f6d8690 100644 --- a/setup.py +++ b/setup.py @@ -37,13 +37,12 @@ def prepare_description(): 'Topic :: Software Development :: Libraries', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', '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', 'Framework :: AsyncIO', 'Intended Audience :: Developers' ]