From edb36a6b37a95cc59469b5a072eed6c7814d571d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Mon, 14 Mar 2022 22:48:31 +0100 Subject: [PATCH] Remove Python 3.7 and 3.8 in CI and setup.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- .gitlab-ci.yml | 26 -------------------------- setup.py | 4 ++-- 2 files changed, 2 insertions(+), 28 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 826b1a8..a15147e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,12 +3,6 @@ stages: - lint -.python-3.7: - image: python:3.7 - -.python-3.8: - image: python:3.8 - .python-3.9: image: python:3.9 @@ -32,16 +26,6 @@ stages: - pip3 install mypy - mypyc --ignore-missing-imports ./poezio_omemo -lint-3.7-pylint: - extends: - - .python-3.7 - - .pylint - -lint-3.8-pylint: - extends: - - .python-3.8 - - .pylint - lint-3.9-pylint: extends: - .python-3.9 @@ -52,16 +36,6 @@ lint-3.10-pylint: - .python-3.10 - .pylint -lint-3.7-mypy: - extends: - - .python-3.7 - - .mypy - -lint-3.8-mypy: - extends: - - .python-3.8 - - .mypy - lint-3.9-mypy: extends: - .python-3.9 diff --git a/setup.py b/setup.py index 8c331c1..df7e8e5 100755 --- a/setup.py +++ b/setup.py @@ -41,8 +41,8 @@ CLASSIFIERS = [ 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Internet :: XMPP', 'Topic :: Security :: Cryptography', 'Topic :: Software Development :: Libraries :: Python Modules',