Skip to content

Commit 1407299

Browse files
committed
3.13 was released
1 parent da2b17b commit 1407299

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci-code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616

1717
steps:
1818
- uses: actions/checkout@v3

.github/workflows/ci-units-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616

1717
steps:
1818
- uses: actions/checkout@v3

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ skip_missing_interpreters = True
1717
skipsdist = True
1818
envlist =
1919
check,
20-
unit_py3_13-dev,
20+
unit_py3_13,
2121
unit_py3_12,
2222
unit_py3_11,
2323
unit_py3_10,
@@ -27,7 +27,7 @@ envlist =
2727

2828
[testenv]
2929
description =
30-
{unit_py3_9,unit_py3_10,unit_py3_11,unit_py3_12,unit_py3_13-dev}: Unit Test run with basepython set to {basepython}
30+
{unit_py3_9,unit_py3_10,unit_py3_11,unit_py3_12,unit_py3_13}: Unit Test run with basepython set to {basepython}
3131
devel: Test KIWI
3232
allowlist_externals =
3333
bash
@@ -42,7 +42,7 @@ allowlist_externals =
4242
python
4343
pytest
4444
basepython =
45-
unit_py3_13-dev: python3.13
45+
unit_py3_13: python3.13
4646
unit_py3_12: python3.12
4747
unit_py3_11: python3.11
4848
unit_py3_10: python3.10
@@ -98,8 +98,8 @@ commands =
9898
{[testenv:mypy]commands}
9999
{[testenv:unit]commands}
100100

101-
# Test run with basepython set to 3.13-dev
102-
[testenv:unit_py3_13-dev]
101+
# Test run with basepython set to 3.13
102+
[testenv:unit_py3_13]
103103
setenv =
104104
PYTHONPATH={toxinidir}/test
105105
changedir=test/unit

0 commit comments

Comments
 (0)