Skip to content

Commit 754066d

Browse files
committed
Applied updates and code clean up
1 parent 82181db commit 754066d

18 files changed

+220
-376
lines changed

.github/workflows/build_wheel.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,10 @@ on: [push, pull_request]
44
permissions: read-all
55
jobs:
66
build_wheel:
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-latest
88
strategy:
99
matrix:
1010
include:
11-
- python-version: '3.7'
12-
toxenv: 'py37'
13-
- python-version: '3.8'
14-
toxenv: 'py38'
1511
- python-version: '3.9'
1612
toxenv: 'py39'
1713
- python-version: '3.10'
@@ -20,14 +16,18 @@ jobs:
2016
toxenv: 'py311'
2117
- python-version: '3.12'
2218
toxenv: 'py312'
19+
- python-version: '3.13'
20+
toxenv: 'py313'
21+
- python-version: '3.14'
22+
toxenv: 'py314'
2323
steps:
2424
- uses: actions/checkout@v4
2525
- name: Install build dependencies
2626
run: |
2727
sudo add-apt-repository universe &&
2828
sudo add-apt-repository -y ppa:deadsnakes/ppa &&
2929
sudo apt-get update &&
30-
sudo apt-get install -y autoconf automake autopoint 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
30+
sudo apt-get install -y autoconf automake autopoint build-essential git libtool pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-pip python3-setuptools
3131
- name: Install tox
3232
run: |
3333
python3 -m pip install tox

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ AC_PREREQ([2.71])
22

33
AC_INIT(
44
[libfsntfs],
5-
[20240707],
5+
[20251018],
66
77

88
AC_CONFIG_SRCDIR(

0 commit comments

Comments
 (0)