Skip to content

Commit 184c70f

Browse files
committed
Added Python 3.14 CI test target
1 parent 9143147 commit 184c70f

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/test_docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
version: ['41']
10+
version: ['41', '42']
1111
container:
1212
image: registry.fedoraproject.org/fedora:${{ matrix.version }}
1313
steps:
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
add-apt-repository -y ppa:gift/dev
5656
apt-get update -q
57-
apt-get install -y build-essential python3 python3-build python3-dev python3-mock python3-pip python3-setuptools python3-wheel python3-yaml
57+
apt-get install -y build-essential python3 python3-build python3-dev python3-mock python3-pip python3-setuptools python3-venv python3-wheel python3-yaml
5858
- name: Run tests
5959
env:
6060
LANG: en_US.UTF-8

.github/workflows/test_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
add-apt-repository -y ppa:deadsnakes/ppa
3737
add-apt-repository -y ppa:gift/dev
3838
apt-get update -q
39-
apt-get install -y build-essential git python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-lib2to3 python3-mock python3-pip python3-setuptools python3-yaml
39+
apt-get install -y build-essential git pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-lib2to3 python3-mock python3-pip python3-setuptools python3-yaml
4040
- name: Install tox
4141
run: |
4242
python3 -m pip install tox

.github/workflows/test_tox.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
include:
17-
- python-version: '3.8'
18-
toxenv: 'py38,wheel'
1917
- python-version: '3.9'
2018
toxenv: 'py39,wheel'
2119
- python-version: '3.10'
@@ -26,6 +24,8 @@ jobs:
2624
toxenv: 'py312,wheel'
2725
- python-version: '3.13'
2826
toxenv: 'py313,wheel'
27+
- python-version: '3.14'
28+
toxenv: 'py314,wheel'
2929
container:
3030
image: ubuntu:22.04
3131
steps:
@@ -46,7 +46,7 @@ jobs:
4646
add-apt-repository -y ppa:deadsnakes/ppa
4747
add-apt-repository -y ppa:gift/dev
4848
apt-get update -q
49-
apt-get install -y build-essential git python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-lib2to3 python3-mock python3-pip python3-setuptools python3-yaml
49+
apt-get install -y build-essential git pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-lib2to3 python3-mock python3-pip python3-setuptools python3-yaml
5050
- name: Install tox
5151
run: |
5252
python3 -m pip install tox
@@ -82,7 +82,7 @@ jobs:
8282
add-apt-repository -y ppa:deadsnakes/ppa
8383
add-apt-repository -y ppa:gift/dev
8484
apt-get update -q
85-
apt-get install -y build-essential git python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-lib2to3 python3-mock python3-pip python3-setuptools python3-yaml
85+
apt-get install -y build-essential git pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-lib2to3 python3-mock python3-pip python3-setuptools python3-yaml
8686
- name: Install tox
8787
run: |
8888
python3 -m pip install tox
@@ -122,7 +122,7 @@ jobs:
122122
add-apt-repository -y ppa:deadsnakes/ppa
123123
add-apt-repository -y ppa:gift/dev
124124
apt-get update -q
125-
apt-get install -y build-essential git python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-lib2to3 python3-mock python3-pip python3-setuptools python3-yaml
125+
apt-get install -y build-essential git pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-distutils python3-lib2to3 python3-mock python3-pip python3-setuptools python3-yaml
126126
- name: Install tox
127127
run: |
128128
python3 -m pip install tox

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dtfabric
3-
version = 20250729
3+
version = 20251014
44
description = Data type fabric (dtfabric)
55
long_description = dtFabric, or data type fabric, is a project to manage data types and structures, as used in the libyal projects.
66
long_description_content_type = text/plain
@@ -22,7 +22,7 @@ install_requires = file:requirements.txt
2222
package_dir =
2323
dtfabric = dtfabric
2424
packages = find:
25-
python_requires = >=3.8
25+
python_requires = >=3.9
2626
scripts =
2727
scripts/validate-definitions.py
2828

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{8,9,10,11,12,13},coverage,docformatter,docs,lint,wheel
2+
envlist = py3{8,9,10,11,12,13,14},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,13}: ./run_tests.py
22+
py3{9,10,11,12,13,14}: ./run_tests.py
2323
coverage: coverage erase
2424
coverage: coverage run --source=dtfabric --omit="*_test*,*__init__*,*test_lib*" run_tests.py
2525
coverage: coverage xml

0 commit comments

Comments
 (0)