Skip to content

Commit ebdb38f

Browse files
committed
Added Python 3.13 CI test target
1 parent 97cdadb commit ebdb38f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test_tox.yml

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
toxenv: 'py311,wheel'
2525
- python-version: '3.12'
2626
toxenv: 'py312,wheel'
27+
- python-version: '3.13'
28+
toxenv: 'py313,wheel'
2729
container:
2830
image: ubuntu:22.04
2931
steps:

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dtformats
3-
version = 20241007
3+
version = 20241013
44
description = Data formats (dtformats)
55
long_description = dtFormats is a collection of various file formats.
66
long_description_content_type = text/plain

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{8,9,10,11,12},coverage,docformatter,lint,wheel
2+
envlist = py3{8,9,10,11,12,13},coverage,docformatter,lint,wheel
33

44
[testenv]
55
allowlist_externals = ./run_tests.py
@@ -19,7 +19,7 @@ deps =
1919
setuptools >= 65
2020
wheel
2121
commands =
22-
py3{8,9,10,11,12}: ./run_tests.py
22+
py3{8,9,10,11,12,13}: ./run_tests.py
2323
coverage: coverage erase
2424
coverage: coverage run --source=dtformats --omit="*_test*,*__init__*,*test_lib*" run_tests.py
2525
coverage: coverage xml

0 commit comments

Comments
 (0)