Skip to content

Commit 920ca29

Browse files
authored
Added Python 3.13 CI test target (#773)
1 parent 989a4db commit 920ca29

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 = dfvfs
3-
version = 20241006
3+
version = 20241012
44
description = Digital Forensics Virtual File System (dfVFS).
55
long_description = dfVFS, or Digital Forensics Virtual File System, provides read-only access to file-system objects from various storage media types and file formats. The goal of dfVFS is to provide a generic interface for accessing file-system objects, for which it uses several back-ends that provide the actual implementation of the various storage media types, volume systems and file systems.
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,docs,lint,wheel
2+
envlist = py3{8,9,10,11,12,13},coverage,docformatter,docs,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=dfvfs --omit="*_test*,*__init__*,*test_lib*" run_tests.py
2525
coverage: coverage xml

0 commit comments

Comments
 (0)