This is an automated email from the ASF dual-hosted git repository.
apitrou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 8b8a67ef14 MINOR: [CI][Python] Install pyuwsgi instead of uwsgi
(#44226)
8b8a67ef14 is described below
commit 8b8a67ef146135dd81ab0c760e3f3520ffba32b4
Author: Antoine Pitrou <[email protected]>
AuthorDate: Tue Oct 1 10:00:19 2024 +0200
MINOR: [CI][Python] Install pyuwsgi instead of uwsgi (#44226)
The `pyuwsgi` distribution provides binary wheels of `uwsgi`, avoiding the
need to compile when installing.
Authored-by: Antoine Pitrou <[email protected]>
Signed-off-by: Antoine Pitrou <[email protected]>
---
python/requirements-test.txt | 3 +--
python/requirements-wheel-test.txt | 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/python/requirements-test.txt b/python/requirements-test.txt
index 03b66258bd..4938bcc82c 100644
--- a/python/requirements-test.txt
+++ b/python/requirements-test.txt
@@ -3,5 +3,4 @@ hypothesis
pandas
pytest
pytz
-# uwsgi disabled on macOS because of GH-44218
-uwsgi; sys.platform != 'win32' and sys.platform != 'darwin' and python_version
< '3.13'
+pyuwsgi; sys.platform != 'win32' and python_version < '3.13'
diff --git a/python/requirements-wheel-test.txt
b/python/requirements-wheel-test.txt
index bad3e251d4..d129ac753a 100644
--- a/python/requirements-wheel-test.txt
+++ b/python/requirements-wheel-test.txt
@@ -9,8 +9,8 @@ cython
hypothesis
pytest
pytz
+pyuwsgi; sys.platform != 'win32' and python_version < '3.13'
tzdata; sys_platform == 'win32'
-uwsgi; sys.platform != 'win32' and python_version < '3.13'
# We generally test with the oldest numpy version that supports a given Python
# version. However, there is no need to make this strictly the oldest version,