Skip to content

Commit 2a888fa

Browse files
authored
Changes for deployment and CI tests (#287)
1 parent bbae610 commit 2a888fa

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ environment:
3030
PYTHON_VERSION: "3.12"
3131
L2TBINARIES_TRACK: "dev"
3232
TARGET: wheel
33-
- DESCRIPTION: "Run tests on Mac OS with Python 3.12"
34-
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey
33+
- DESCRIPTION: "Run tests on Mac OS with Python 3.13"
34+
APPVEYOR_BUILD_WORKER_IMAGE: macos-sonoma
3535
HOMEBREW_NO_INSTALL_CLEANUP: 1
3636
TARGET: tests
3737

config/appveyor/install.sh

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

55
brew update -q
6-
brew install -q gettext gnu-sed python@3.12 tox || true
6+
brew install -q gettext gnu-sed python@3.13 tox || true
77

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.12.
13-
export PATH="/usr/local/opt/python@3.12/bin:${PATH}";
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}";
1414

15-
tox -e py312
15+
tox -e py313

setup.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dfdatetime
3-
version = 20241012
3+
version = 20241226
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
@@ -31,6 +31,3 @@ exclude =
3131
tests.*
3232
utils
3333
where = .
34-
35-
[bdist_wheel]
36-
universal = 1

0 commit comments

Comments
 (0)