From 1ffd24dcf92e4867671156a8d6bab42b0669618b Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Wed, 1 Feb 2023 14:21:11 -0500 Subject: [PATCH] Python version support: sync verified and advertised versions There are differences with regards to the versions of Python that are verified (somehow) through Pylint, and the ones that are advertised. Given that there's no pinning of Pylint versions, it shouldn't be possible to use it on Python versions such as 3.5 and 3.6 (latest Pylint doesn't support those). With that, let's cover all the currently supported Python versions. Signed-off-by: Cleber Rosa --- .github/workflows/pylint.yml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 85de488..957bd98 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index 770649e..5222c14 100644 --- a/setup.py +++ b/setup.py @@ -16,12 +16,11 @@ setup( classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 3", - "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", "Intended Audience :: Developers", "Operating System :: OS Independent", "Development Status :: 3 - Alpha",