From c32ac17709f983dec6c9c33130c41a347cde1bd9 Mon Sep 17 00:00:00 2001 From: Eric Engestrom <eric@igalia.com> Date: Sat, 15 Mar 2025 09:42:22 +0100 Subject: [PATCH] ci: run tests on python 3.13 as well Part-of: <https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/994> --- .gitlab-ci.yml | 2 +- tox.ini | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9526bbb35e..9c19d8dbc7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -179,7 +179,7 @@ tox: parallel: matrix: - PY_MAJVER: 3 - PY_MINVER: [8, 9, 10, 11, 12] + PY_MINVER: [8, 9, 10, 11, 12, 13] needs: [] pages: diff --git a/tox.ini b/tox.ini index b25b435b50..326a3f0a31 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38,39,310,311,312}-{generator,noaccel}, py{39,310,311,312}-numpy2, py{38,39,310,311,312}-accel-{win,nix}, py{38,39,310,311,312}-streams, py{38,39,310,311,312}-functional +envlist = py{38,39,310,311,312,313}-{generator,noaccel}, py{39,310,311,312,313}-numpy2, py{38,39,310,311,312,313}-accel-{win,nix}, py{38,39,310,311,312,313}-streams, py{38,39,310,311,312,313}-functional skipsdist = True [pytest] @@ -17,9 +17,9 @@ setenv = USERNAME = foo deps = accel-nix: lxml - py{38,39,310,311,312}-generator: numpy<2.0 - py{39,310,311,312}-numpy2: numpy>2.0 - py{38,39,310,311,312}: mako>=1.1.0 + py{38,39,310,311,312,313}-generator: numpy<2.0 + py{39,310,311,312,313}-numpy2: numpy>2.0 + py{38,39,310,311,312,313}: mako>=1.1.0 {accel,noaccel,generator,streams}: pytest>=6.2.5 functional: pytest>=3.9 -- GitLab