From f7c09776979509cfd60f57766723c9b91b788a2e Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Tue, 14 Nov 2023 13:48:49 +1100 Subject: [PATCH] removed -get --- .github/workflows/wheels-test.sh | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels-test.sh b/.github/workflows/wheels-test.sh index fd622412bc1..3e7ce02e6f6 100755 --- a/.github/workflows/wheels-test.sh +++ b/.github/workflows/wheels-test.sh @@ -8,8 +8,8 @@ if [[ "$OSTYPE" == "darwin"* ]]; then elif [ "${AUDITWHEEL_POLICY:9}" == "musllinux" ]; then apk add curl fribidi else - apt-get update - apt-get install -y libfribidi0 libopenblas-dev pkg-config + apt update + apt install -y libfribidi0 libopenblas-dev pkg-config fi if [ "${AUDITWHEEL_POLICY:9}" != "musllinux" ]; then python3 -m pip install numpy diff --git a/pyproject.toml b/pyproject.toml index 2f5f549b79b..e73d87f3a72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ Twitter = "https://twitter.com/PythonPillow" [tool.cibuildwheel] before-all = ".github/workflows/wheels-dependencies.sh" test-command = "cd {project} && .github/workflows/wheels-test.sh" -test-requires = "defusedxml olefile pyroma pytest pytest-timeout" +test-extras = ["tests"] [tool.setuptools] packages = ["PIL"]