Skip to content

Commit da1d05b

Browse files
authored
Added Python 3.14 CI test target (#290)
1 parent 514e41c commit da1d05b

5 files changed

Lines changed: 11 additions & 9 deletions

File tree

.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-pip python3-setuptools python3-wheel
57+
apt-get install -y build-essential python3 python3-build python3-dev python3-pip python3-setuptools python3-venv python3-wheel
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-pip python3-setuptools
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-pip python3-setuptools
4040
- name: Install tox
4141
run: |
4242
python3 -m pip install tox

.github/workflows/test_tox.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
toxenv: 'py312,wheel'
2525
- python-version: '3.13'
2626
toxenv: 'py313,wheel'
27+
- python-version: '3.14'
28+
toxenv: 'py314,wheel'
2729
container:
2830
image: ubuntu:22.04
2931
steps:
@@ -44,7 +46,7 @@ jobs:
4446
add-apt-repository -y ppa:deadsnakes/ppa
4547
add-apt-repository -y ppa:gift/dev
4648
apt-get update -q
47-
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-pip python3-setuptools
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-pip python3-setuptools
4850
- name: Install tox
4951
run: |
5052
python3 -m pip install tox
@@ -80,7 +82,7 @@ jobs:
8082
add-apt-repository -y ppa:deadsnakes/ppa
8183
add-apt-repository -y ppa:gift/dev
8284
apt-get update -q
83-
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-pip python3-setuptools
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-pip python3-setuptools
8486
- name: Install tox
8587
run: |
8688
python3 -m pip install tox
@@ -120,7 +122,7 @@ jobs:
120122
add-apt-repository -y ppa:deadsnakes/ppa
121123
add-apt-repository -y ppa:gift/dev
122124
apt-get update -q
123-
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-pip python3-setuptools
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-pip python3-setuptools
124126
- name: Install tox
125127
run: |
126128
python3 -m pip install tox

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dfdatetime
3-
version = 20250730
3+
version = 20251014
44
description = Digital Forensics date and time (dfDateTime).
55
long_description = dfDateTime, or Digital Forensics date and time, provides date and time objects to preserve accuracy and precision.
66
long_description_content_type = text/plain

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{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=dfdatetime --omit="*_test*,*__init__*,*test_lib*" run_tests.py
2525
coverage: coverage xml

0 commit comments

Comments
 (0)