From d5564a4e6d6a8056778441fce0272d8a9121f65b Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Thu, 26 Dec 2024 18:13:04 +0100 Subject: [PATCH] Changes for deployment and CI tests --- appveyor.yml | 4 ++-- config/appveyor/install.sh | 2 +- config/appveyor/runtests.sh | 6 +++--- setup.cfg | 5 +---- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index fa80fa7..6ad3e37 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -28,8 +28,8 @@ environment: PYTHON_VERSION: "3.12" L2TBINARIES_TRACK: "dev" TARGET: wheel - - DESCRIPTION: "Run tests on Mac OS with Python 3.12" - APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey + - DESCRIPTION: "Run tests on Mac OS with Python 3.13" + APPVEYOR_BUILD_WORKER_IMAGE: macos-sonoma HOMEBREW_NO_INSTALL_CLEANUP: 1 TARGET: tests diff --git a/config/appveyor/install.sh b/config/appveyor/install.sh index 42c4ab6..51eb76d 100755 --- a/config/appveyor/install.sh +++ b/config/appveyor/install.sh @@ -3,5 +3,5 @@ set -e brew update -q -brew install -q gettext gnu-sed python@3.12 tox || true +brew install -q gettext gnu-sed python@3.13 tox || true diff --git a/config/appveyor/runtests.sh b/config/appveyor/runtests.sh index 86ba5ce..18cc67c 100755 --- a/config/appveyor/runtests.sh +++ b/config/appveyor/runtests.sh @@ -9,7 +9,7 @@ export LDFLAGS="-L/usr/local/lib -L/usr/local/opt/gettext/lib ${LDFLAGS}"; export CPPFLAGS="-I/usr/local/opt/openssl@1.1/include ${CPPFLAGS}"; export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib ${LDFLAGS}"; -# Set the following environment variables to ensure tox can find Python 3.12. -export PATH="/usr/local/opt/python@3.12/bin:${PATH}"; +# Set the following environment variables to ensure tox can find Python 3.13. +export PATH="/usr/local/opt/python@3.13/bin:${PATH}"; -tox -e py312 +tox -e py313 diff --git a/setup.cfg b/setup.cfg index 06d1758..0acbd1c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dtfabric -version = 20241013 +version = 20241226 description = Data type fabric (dtfabric) long_description = dtFabric, or data type fabric, is a project to manage data types and structures, as used in the libyal projects. long_description_content_type = text/plain @@ -33,6 +33,3 @@ exclude = tests.* utils where = . - -[bdist_wheel] -universal = 1