Skip to content

Commit 389a17f

Browse files
authored
fix: add Python 3.13 to test matrix (#120)
1 parent ac8df8b commit 389a17f

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/tox.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ jobs:
5252
py312-2.16
5353
py312-2.17
5454
py312-2.18
55-
py312-2.18-macos:tox -e py312-2.18
5655
py312-devel
56+
py313-2.18
57+
py313-2.18-macos:tox -e py313-2.18
58+
py313-devel
5759
5860
build:
5961
name: ${{ matrix.name }}

CHANGELOG.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@
1414

1515
* **deps:** bump coactions/dynamic-matrix from 3 to 4 ([#104](https://github.com/hille721/ansible-variables/issues/104)) ([f7e5124](https://github.com/hille721/ansible-variables/commit/f7e51248634b363d23e44d4caedfc1478ed51af4))
1616

17-
## [0.8.0](https://github.com/hille721/ansible-variables/compare/v0.7.3...v0.8.0) (2024-10-19)
18-
19-
20-
### Features
21-
22-
* ansible-core 2.18 ([#97](https://github.com/hille721/ansible-variables/issues/97)) ([948b920](https://github.com/hille721/ansible-variables/commit/948b920937fcea53b7e9acc2369039e59aa24dc2))
2317

2418
## [0.8.0](https://github.com/hille721/ansible-variables/compare/v0.7.3...v0.8.0) (2024-09-30)
2519

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ description = "Keep track of Ansible host context variables"
2121
readme = "README.md"
2222
license = {file = "LICENSE"}
2323
classifiers = [
24-
"Development Status :: 4 - Beta",
24+
"Development Status :: 5 - Production/Stable",
2525
"Environment :: Console",
2626
"Intended Audience :: Developers",
2727
"Intended Audience :: Information Technology",
@@ -35,6 +35,7 @@ classifiers = [
3535
"Programming Language :: Python :: 3.10",
3636
"Programming Language :: Python :: 3.11",
3737
"Programming Language :: Python :: 3.12",
38+
"Programming Language :: Python :: 3.13",
3839
"Programming Language :: Python :: 3 :: Only",
3940
"Topic :: System :: Installation/Setup",
4041
"Topic :: System :: Systems Administration",

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ env_list =
66
py310-{2.12,2.13,2.14,2.15,2.16,2.17}
77
py311-{2.14,2.15,2.16,2.17,2.18,devel}
88
py312-{2.16,2.17,2.18,devel}
9+
py313-{2.18,devel}
910
minversion = 4.4.11
1011

1112
[testenv]

0 commit comments

Comments
 (0)