Skip to content

Commit a58cc09

Browse files
committed
feat(CI): Add support for Python 3.13
1 parent 4d3ed5f commit a58cc09

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test:archlinux:
1717
stage: test
1818
script:
1919
- pacman -Sy python-pytest python-pylint python-pytest-cov python-xmltodict python-requests python-tox python-pycryptodomex --noconfirm
20-
- tox -e py312
20+
- tox -e py313
2121
tags:
2222
- archlinux
2323

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def read_readme() -> str:
4040
'Programming Language :: Python :: 3.10',
4141
'Programming Language :: Python :: 3.11',
4242
'Programming Language :: Python :: 3.12',
43+
'Programming Language :: Python :: 3.13',
4344
'Topic :: Software Development',
4445
],
4546
python_requires='>=3.7',

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ install_requires =
66
name = huawei_lte_api
77

88
[tox]
9-
envlist = lint, py38, py39, py310, py311, py312
9+
envlist = lint, py38, py39, py310, py311, py312, py313
1010

1111
[gh-actions]
1212
python =
@@ -15,6 +15,7 @@ python =
1515
3.10: py310
1616
3.11: py311, lint
1717
3.12: py312
18+
3.13: py313
1819

1920
[testenv]
2021
commands =

0 commit comments

Comments
 (0)