diff --git a/.github/workflows/test_tox.yml b/.github/workflows/test_tox.yml index 2f1b79dd..045857b7 100644 --- a/.github/workflows/test_tox.yml +++ b/.github/workflows/test_tox.yml @@ -24,6 +24,8 @@ jobs: toxenv: 'py311,wheel' - python-version: '3.12' toxenv: 'py312,wheel' + - python-version: '3.13' + toxenv: 'py313,wheel' container: image: ubuntu:22.04 steps: diff --git a/setup.cfg b/setup.cfg index fddfed8b..c347641e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dfvfs -version = 20241006 +version = 20241012 description = Digital Forensics Virtual File System (dfVFS). 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. long_description_content_type = text/plain diff --git a/tox.ini b/tox.ini index 386c582e..cf0e9759 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py3{8,9,10,11,12},coverage,docformatter,docs,lint,wheel +envlist = py3{8,9,10,11,12,13},coverage,docformatter,docs,lint,wheel [testenv] allowlist_externals = ./run_tests.py @@ -19,7 +19,7 @@ deps = setuptools >= 65 wheel commands = - py3{8,9,10,11,12}: ./run_tests.py + py3{8,9,10,11,12,13}: ./run_tests.py coverage: coverage erase coverage: coverage run --source=dfvfs --omit="*_test*,*__init__*,*test_lib*" run_tests.py coverage: coverage xml