Skip to content

Commit

Permalink
Fix Python version check
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Sep 17, 2024
1 parent 7235140 commit 8946c1a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions ci/scripts/python_wheel_unix_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ fi
if [ "${CHECK_UNITTESTS}" == "ON" ]; then
# Install testing dependencies
pip install -U -r ${source_dir}/python/requirements-wheel-test.txt
if [ ! "${PYTHON_VERSION}" = "3.13" ]; then
pip install uwsgi
fi

# Execute unittest, test dependencies must be installed
python -c 'import pyarrow; pyarrow.create_library_symlinks()'
Expand Down
2 changes: 1 addition & 1 deletion python/requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ hypothesis
pandas
pytest
pytz
uwsgi
uwsgi; sys.platform != 'win32' and python_version < '3.13'
1 change: 1 addition & 0 deletions python/requirements-wheel-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ hypothesis
pytest
pytz
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,
Expand Down

0 comments on commit 8946c1a

Please sign in to comment.