From 09e4072997fc7ed77fdf62edd12dfb69e15d83f3 Mon Sep 17 00:00:00 2001 From: Klaus Rettinghaus Date: Sat, 20 Jan 2024 17:06:01 +0100 Subject: [PATCH] try building all architectures --- .github/workflows/python-ci-wheel.yml | 1 + fonts/generate_all.sh | 4 ++++ setup.py | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-ci-wheel.yml b/.github/workflows/python-ci-wheel.yml index 219ed29ce00..70c52724c0f 100644 --- a/.github/workflows/python-ci-wheel.yml +++ b/.github/workflows/python-ci-wheel.yml @@ -92,6 +92,7 @@ jobs: CIBW_TEST_SKIP: cp*-macosx_arm64 CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 CIBW_MANYLINUX_I686_IMAGE: manylinux2014 + CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014 CIBW_BEFORE_ALL_MACOS: brew update && brew install swig CIBW_BEFORE_ALL_WINDOWS: choco install swig -f -y CIBW_BEFORE_BUILD: swig -version && bash -c 'cd tools; ./get_git_commit.sh' && swig -c++ -python -py3 ./bindings/python/verovio.i diff --git a/fonts/generate_all.sh b/fonts/generate_all.sh index 3c008e488aa..50bded7a942 100755 --- a/fonts/generate_all.sh +++ b/fonts/generate_all.sh @@ -21,6 +21,10 @@ echo "Generating Gootville files ..." $PYTHON generate.py extract Gootville $PYTHON generate.py css Gootville +echo "Generating Mozart files ..." +$PYTHON generate.py extract Mozart +$PYTHON generate.py css Mozart + echo "Generating Petaluma files ..." $PYTHON generate.py extract Petaluma $PYTHON generate.py css Petaluma diff --git a/setup.py b/setup.py index fc1f38b2709..c12b4aa9aa0 100644 --- a/setup.py +++ b/setup.py @@ -156,7 +156,7 @@ def get_version() -> str: 'verovio.data.Petaluma': os.listdir('./data/Petaluma'), 'verovio.data.text': os.listdir('./data/text'), }, - python_requires='>=3.7', + python_requires='>=3.8', project_urls={ 'Bug Reports': 'https://github.com/rism-digital/verovio/issues', 'Source': 'https://github.com/rism-digital/verovio',