forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apacheGH-39958: [Python][CI] Remove upper pin on pytest (apache#40487)
### Rationale for this change The latest version of pytest (`8.0.0`) is breaking our CI: - S3 fixture from out test suite fails - `doctest-cython` check fails ### What changes are included in this PR? - added `allow_bucket_creation=True` to the `s3_example_fs` fixture - removed the pin on pytest, except for the doc builds ### Are these changes tested? Yes. ### Are there any user-facing changes? No Closes: - Closes apache#39958 - Closes apache#39957 * GitHub Issue: apache#39958 Lead-authored-by: AlenkaF <[email protected]> Co-authored-by: Joris Van den Bossche <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
- Loading branch information
1 parent
ed47ad2
commit 6d5cfb2
Showing
5 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
cffi | ||
hypothesis | ||
pandas | ||
pytest<8 | ||
pytest | ||
pytz |
This file contains 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
cffi | ||
cython | ||
hypothesis | ||
pytest<8 | ||
pytest | ||
pytz | ||
tzdata; sys_platform == 'win32' | ||
|
||
|