-
-
Notifications
You must be signed in to change notification settings - Fork 19.1k
CI: Test Pyarrow Less #46386
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
Closed
Closed
CI: Test Pyarrow Less #46386
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
85e58bd
CI: Test Pyarrow Less
lithomas1 fda3a00
fixups
lithomas1 a5eac9b
comments
lithomas1 5cb5f9e
test latest pyarrow
lithomas1 73b7c30
update
lithomas1 7865aab
Merge branch 'main' into test-pyarrow-less
lithomas1 815127d
try something
lithomas1 98ce28f
Merge branch 'pandas-dev:main' into test-pyarrow-less
lithomas1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,9 +26,6 @@ jobs: | |
matrix: | ||
env_file: [actions-38.yaml, actions-39.yaml, actions-310.yaml] | ||
pattern: ["not single_cpu", "single_cpu"] | ||
# Don't test pyarrow v2/3: Causes timeouts in read_csv engine | ||
# even if tests are skipped/xfailed | ||
pyarrow_version: ["5", "7"] | ||
include: | ||
- env_file: actions-38-downstream_compat.yaml | ||
pattern: "not slow and not network and not single_cpu" | ||
|
@@ -62,8 +59,27 @@ jobs: | |
pandas_testing_mode: "deprecate" | ||
test_args: "-W error" | ||
name: "Numpy Dev" | ||
# Test lowest & highest supported pyarrow | ||
# Don't test pyarrow v2/3: Causes timeouts in read_csv engine | ||
# even if tests are skipped/xfailed | ||
- env_file: actions-38.yaml | ||
pattern: "not single_cpu" | ||
pyarrow_version: 5 | ||
name: "Pyarrow 5" | ||
- env_file: actions-38.yaml | ||
pattern: "single_cpu" | ||
pyarrow_version: 5 | ||
name: "Pyarrow 5 (single)" | ||
- env_file: actions-38.yaml | ||
pattern: "not single_cpu" | ||
pyarrow_version: latest | ||
name: "Latest Pyarrow" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this eventually won't be the latest, similar better to name this "Pyarrow v7" |
||
- env_file: actions-38.yaml | ||
pattern: "single_cpu" | ||
pyarrow_version: latest | ||
name: "Latest Pyarrow (single)" | ||
fail-fast: false | ||
name: ${{ matrix.name || format('{0} pyarrow={1} {2}', matrix.env_file, matrix.pyarrow_version, matrix.pattern) }} | ||
name: ${{ matrix.name || format('{0} {1}', matrix.env_file, matrix.pattern) }} | ||
env: | ||
ENV_FILE: ci/deps/${{ matrix.env_file }} | ||
PATTERN: ${{ matrix.pattern }} | ||
|
@@ -149,7 +165,13 @@ jobs: | |
if: ${{ env.IS_PYPY == 'false' }} # No pypy3.8 support | ||
|
||
- name: Upgrade Arrow version | ||
run: conda install -n pandas-dev -c conda-forge --no-update-deps pyarrow=${{ matrix.pyarrow_version }} | ||
run: | | ||
conda remove --force pyarrow | ||
if [[ ${{matrix.pyarrow_version}} == 'latest' ]]; then | ||
conda install -n pandas-dev -c conda-forge --no-update-deps pyarrow | ||
else | ||
conda install -n pandas-dev -c conda-forge --no-update-deps pyarrow=${{ matrix.pyarrow_version }} | ||
fi | ||
if: ${{ matrix.pyarrow_version }} | ||
|
||
- name: Setup PyPy | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.