From 7553af7ec954057ff9c98d36825a8acc3652bb78 Mon Sep 17 00:00:00 2001 From: Maeva Pourpoint <maeva@passcal.nmt.edu> Date: Thu, 7 Dec 2023 14:13:40 -0700 Subject: [PATCH] Test support for python 3.10 --- .gitlab-ci.yml | 8 ++++++++ tox.ini | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 113549d..dae6f39 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,3 +38,11 @@ python3.9: stage: test script: - python -m unittest + +python3.10: + image: python:3.10 + tags: + - passoft + stage: test + script: + - python -m unittest diff --git a/tox.ini b/tox.ini index 2f1ef0c..10760b0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py39, flake8 +envlist = py39, py310, flake8 [testenv:flake8] basepython = python -- GitLab