From cdad135294e566112182c27cde5d6a661e0bd5c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20M=C3=BCller?= Date: Mon, 14 Aug 2023 18:36:44 +0200 Subject: [PATCH] Add Golang 1.21 as stable --- bci_tester/data.py | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bci_tester/data.py b/bci_tester/data.py index 7437974e..f9b3e4f6 100755 --- a/bci_tester/data.py +++ b/bci_tester/data.py @@ -312,8 +312,8 @@ def create_BCI( extra_marks=[pytest.mark.__getattr__(f"golang_{stability}")], ) for golang_version, stability in ( - ("1.19", "oldstable"), - ("1.20", "stable"), + ("1.20", "oldstable"), + ("1.21", "stable"), ) ] diff --git a/pyproject.toml b/pyproject.toml index 557c2ebb..e54a025d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,8 +47,8 @@ markers = [ 'git_latest', 'helm_latest', 'nginx_latest', - 'golang_1.19', 'golang_1.20', + 'golang_1.21', 'golang_oldstable', 'golang_stable', 'nodejs_16',