Skip to content

Commit

Permalink
Added Python 3.13 CI test target
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Oct 12, 2024
1 parent 868aa0f commit e60d91f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test_tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = plaso
version = 20241006
version = 20241012
description = Plaso (log2timeline) - Super timeline all the things
long_description = Plaso (log2timeline) is a framework to create super timelines. Its purpose is to extract timestamps from various files found on typical computer systems and aggregate them.
long_description_content_type = text/plain
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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=plaso --omit="*_test*,*__init__*,*test_lib*" run_tests.py
coverage: coverage xml
Expand Down

0 comments on commit e60d91f

Please sign in to comment.