Skip to content

Commit 95c85fe

Browse files
authored
Changes for CI tests (#293)
1 parent 60b0aeb commit 95c85fe

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/test_docker.yml

Lines changed: 1 addition & 1 deletion
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', '42']
10+
version: ['43']
1111
container:
1212
image: registry.fedoraproject.org/fedora:${{ matrix.version }}
1313
steps:

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ environment:
3030
PYTHON_VERSION: "3.12"
3131
L2TBINARIES_TRACK: "dev"
3232
TARGET: wheel
33-
- DESCRIPTION: "Run tests on Mac OS with Python 3.13"
33+
- DESCRIPTION: "Run tests on Mac OS with Python 3.14"
3434
APPVEYOR_BUILD_WORKER_IMAGE: macos-sonoma
3535
HOMEBREW_NO_INSTALL_CLEANUP: 1
3636
TARGET: tests

config/appveyor/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ set -e
44

55
brew untap homebrew/homebrew-cask-versions
66
brew update -q
7-
brew install -q gettext gnu-sed python@3.13 tox || true
7+
brew install -q gettext gnu-sed python@3.14 tox || true
88

config/appveyor/runtests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export LDFLAGS="-L/usr/local/lib -L/usr/local/opt/gettext/lib ${LDFLAGS}";
99
export CPPFLAGS="-I/usr/local/opt/openssl@1.1/include ${CPPFLAGS}";
1010
export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib ${LDFLAGS}";
1111

12-
# Set the following environment variables to ensure tox can find Python 3.13.
13-
export PATH="/usr/local/opt/python@3.13/bin:${PATH}";
12+
# Set the following environment variables to ensure tox can find Python 3.14.
13+
export PATH="/usr/local/opt/python@3.14/bin:${PATH}";
1414

15-
tox -e py313
15+
tox -e py314

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 = 20251018
3+
version = 20251117
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,14},coverage,docformatter,docs,lint,wheel
2+
envlist = py3{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,14}: ./run_tests.py
22+
py3{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)