Skip to content
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

MINOR: [Python][CI] Add upper bound on pytest version #39827

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/conda_env_python.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cloudpickle
fsspec
hypothesis
numpy>=1.16.6
pytest
pytest<8 # pytest-lazy-fixture broken on pytest 8.0.0
pytest-faulthandler
pytest-lazy-fixture
s3fs>=2023.10.0
Expand Down
2 changes: 1 addition & 1 deletion python/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cffi
hypothesis
pandas
pytest
pytest<8
pytest-lazy-fixture
pytz
2 changes: 1 addition & 1 deletion python/requirements-wheel-test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cffi
cython
hypothesis
pytest
pytest<8
pytest-lazy-fixture
pytz
tzdata; sys_platform == 'win32'
Expand Down
Loading