From 308d91f8b889ae9db17fcfad87a3f29bbcf6bc35 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Mon, 30 May 2022 13:06:35 +0100 Subject: [PATCH] MNT,CI: Drop testing py36, add py310 --- .gitlab-ci.yml | 7 ++++--- setup.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 300257c..e1edfdd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,9 +54,6 @@ variables: - bash ./.ci/unit_tests.sh -test:3.6: - image: python:3.6 - <<: *test_template test:3.7: image: python:3.7 @@ -69,3 +66,7 @@ test:3.8: test:3.9: image: python:3.9 <<: *test_template + +test:3.10: + image: python:3.10 + <<: *test_template diff --git a/setup.py b/setup.py index 0c4b5d2..93a868e 100644 --- a/setup.py +++ b/setup.py @@ -44,10 +44,10 @@ setup( 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: Free for non-commercial use', - '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', 'Topic :: Software Development :: Libraries :: Python Modules'], packages=find_packages(exclude=('doc')), -- GitLab