jorisvandenbossche commented on code in PR #43691: URL: https://github.com/apache/arrow/pull/43691#discussion_r1717174276
########## python/requirements-wheel-test.txt: ########## @@ -5,22 +5,8 @@ pytest pytz tzdata; sys_platform == 'win32' -numpy==1.21.3; platform_system == "Linux" and platform_machine == "aarch64" and python_version < "3.11" -numpy==1.23.4; python_version == "3.11" -numpy==1.26.0; python_version >= "3.12" -numpy==1.19.5; platform_system == "Linux" and platform_machine != "aarch64" and python_version < "3.9" -numpy==1.21.3; platform_system == "Linux" and platform_machine != "aarch64" and python_version >= "3.9" and python_version < "3.11" -numpy==1.21.3; platform_system == "Darwin" and platform_machine == "arm64" and python_version < "3.11" -numpy==1.19.5; platform_system == "Darwin" and platform_machine != "arm64" and python_version < "3.9" -numpy==1.21.3; platform_system == "Darwin" and platform_machine != "arm64" and python_version >= "3.9" and python_version < "3.11" -numpy==1.19.5; platform_system == "Windows" and python_version < "3.9" -numpy==1.21.3; platform_system == "Windows" and python_version >= "3.9" and python_version < "3.11" +numpy==1.21.3; python_version < "3.11" +numpy==1.23.5; python_version == "3.11" +numpy==1.26.4; python_version == "3.12" -pandas<1.1.0; platform_system == "Linux" and platform_machine != "aarch64" and python_version < "3.8" -pandas; platform_system == "Linux" and platform_machine != "aarch64" and python_version >= "3.8" -pandas; platform_system == "Linux" and platform_machine == "aarch64" -pandas<1.1.0; platform_system == "Darwin" and platform_machine != "arm64" and python_version < "3.8" -pandas; platform_system == "Darwin" and platform_machine != "arm64" and python_version >= "3.8" -pandas; platform_system == "Darwin" and platform_machine == "arm64" -pandas<1.1.0; platform_system == "Windows" and python_version < "3.8" -pandas; platform_system == "Windows" and python_version >= "3.8" +pandas Review Comment: Essentially we were already asking for just `pandas` for everything not below 3.8, and we don't support such old python version anymore. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
