Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
strategy:
matrix:
include:
- python-version: '3.13'
toxenv: 'py313'
- python-version: '3.14'
toxenv: 'py314'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -29,14 +29,10 @@ jobs:
python setup.py build
tox -e${{ matrix.toxenv }}
build_ubuntu:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: '3.8'
toxenv: 'py38'
- python-version: '3.9'
toxenv: 'py39'
- python-version: '3.10'
toxenv: 'py310'
- python-version: '3.11'
Expand All @@ -45,14 +41,16 @@ jobs:
toxenv: 'py312'
- python-version: '3.13'
toxenv: 'py313'
- python-version: '3.14'
toxenv: 'py314'
steps:
- uses: actions/checkout@v4
- name: Install build dependencies
run: |
sudo add-apt-repository universe &&
sudo add-apt-repository -y ppa:deadsnakes/ppa &&
sudo apt-get update &&
sudo apt-get install -y autoconf automake autopoint autotools-dev build-essential git libtool pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-pip python3-setuptools
sudo apt-get install -y autoconf automake autopoint autotools-dev build-essential git libtool pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-pip python3-setuptools
- name: Install tox
run: |
python3 -m pip install tox
Expand All @@ -65,7 +63,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.13']
python-version: ['3.14']
architecture: ['x86', 'x64']
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion class_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
DEBUG = 0

# The pytsk3 version.
VERSION = "20250801"
VERSION = "20251121"

# These functions are used to manage library memory.
FREE = "aff4_free"
Expand Down
4 changes: 2 additions & 2 deletions dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytsk3 (20250801-1) unstable; urgency=low
pytsk3 (20251121-1) unstable; urgency=low

* Auto-generated

-- Joachim Metz <joachim.metz@gmail.com> Fri, 01 Aug 2025 07:51:42 -0100
-- Joachim Metz <joachim.metz@gmail.com> Fri, 21 Nov 2025 07:14:56 -0100
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pytsk3
version = 20250801
version = 20251121
description = Python bindings for the SleuthKit
long_description = Python bindings for the SleuthKit
author = Michael Cohen
Expand All @@ -15,4 +15,4 @@ classifiers =
Programming Language :: Python

[options]
python_requires = >=3.8
python_requires = >=3.10
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3{7,8,9,10,11,12,13}
envlist = py3{10,11,12,13,14}

[testenv]
pip_pre = True
Expand Down
Loading