Skip to content

Commit d14fb6b

Browse files
committed
Changes for deployment and CI tests
1 parent ebdb38f commit d14fb6b

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ environment:
2828
PYTHON_VERSION: "3.12"
2929
L2TBINARIES_TRACK: "dev"
3030
TARGET: wheel
31-
- DESCRIPTION: "Run tests on Mac OS with Python 3.12"
32-
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey
31+
- DESCRIPTION: "Run tests on Mac OS with Python 3.13"
32+
APPVEYOR_BUILD_WORKER_IMAGE: macos-sonoma
3333
HOMEBREW_NO_INSTALL_CLEANUP: 1
3434
TARGET: tests
3535

config/appveyor/install.sh

+1-1
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 snappy tox || true
6+
brew install -q gettext gnu-sed python@3.13 snappy tox || true
77

config/appveyor/runtests.sh

+3-3
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/[email protected]/include ${CPPFLAGS}";
1010
export LDFLAGS="-L/usr/local/opt/[email protected]/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

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dtformats
3-
version = 20241013
3+
version = 20241227
44
description = Data formats (dtformats)
55
long_description = dtFormats is a collection of various file formats.
66
long_description_content_type = text/plain
@@ -69,6 +69,3 @@ exclude =
6969
tests.*
7070
utils
7171
where = .
72-
73-
[bdist_wheel]
74-
universal = 1

0 commit comments

Comments
 (0)