From f95b69130c6f5851021db15dd609f31b52963f23 Mon Sep 17 00:00:00 2001 From: Duncan Macleod Date: Mon, 20 Dec 2021 09:36:38 +0000 Subject: [PATCH] add support for Python 3.10 --- .gitlab-ci.yml | 5 +++++ setup.py | 1 + 2 files changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0a1f34ac..8813c1e1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -205,6 +205,11 @@ test:python3.9: - .test image: python:3.9 +test:python3.10: + extends: + - .test + image: python:3.10 + # -- test RHEL .test:el: diff --git a/setup.py b/setup.py index eec75d98..55b2b44a 100644 --- a/setup.py +++ b/setup.py @@ -160,6 +160,7 @@ setup( 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Scientific/Engineering :: Astronomy', 'Topic :: Scientific/Engineering :: Physics' ] -- GitLab