-
Notifications
You must be signed in to change notification settings - Fork 221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: Run the 'GMT Tests' workflow on Python 3.10/3.12 with optional packages and Python 3.11 without optional packages #3618
Conversation
.github/workflows/ci_tests.yaml
Outdated
# Python 3.11 + core packages | ||
- python-version: '3.11' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd still prefer to keep the middle Python version (Python 3.11 currently) on Ubuntu only, no need to test on macOS/Windows.
@@ -183,7 +183,16 @@ def test_to_numpy_pandas_series_numpy_dtypes_numeric(dtype, expected_dtype): | |||
"U10", | |||
"string[python]", | |||
pytest.param("string[pyarrow]", marks=skip_if_no(package="pyarrow")), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
string[pyarrow_numpy]
was added in pandas 2.1:
https://pandas.pydata.org/pandas-docs/version/2.1/whatsnew/v2.1.0.html#avoid-numpy-object-dtype-for-strings-by-default
Description of proposed changes
Implement the idea in #3615 (comment).
Now the workflow has 7 jobs:
Closes #3615.