Skip to content
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
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@
"ibis-framework[bigquery] >=8.0.0,<9.0.0dev",
"jellyfish >=0.8.9",
"numpy >=1.24.0",
# TODO: Relax upper bound once we have fixed `system_prerelease` tests.
"pandas >=1.5.0",
"pyarrow >=8.0.0",
"pandas >=1.5.3",
"pyarrow >=10.0.1",
"pydata-google-auth >=1.8.2",
"requests >=2.27.1",
"scikit-learn >=1.2.2",
Expand Down
6 changes: 3 additions & 3 deletions testing/constraints-3.10.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ google-auth==2.27.0
ipykernel==5.5.6
ipython==7.34.0
notebook==6.5.5
pandas==2.0.3
pandas-stubs==2.0.3.230814
pandas==2.1.4
pandas-stubs==2.1.4.231227
portpicker==1.5.2
requests==2.31.0
requests==2.32.3
tornado==6.3.3
absl-py==1.4.0
debugpy==1.6.6
Expand Down
4 changes: 2 additions & 2 deletions testing/constraints-3.9.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ google-cloud-storage==2.0.0
ibis-framework==8.0.0
jellyfish==0.8.9
numpy==1.24.0
pandas==1.5.0
pyarrow==8.0.0
pandas==1.5.3
pyarrow==10.0.1
pydata-google-auth==1.8.2
requests==2.27.1
scikit-learn==1.2.2
Expand Down
2 changes: 1 addition & 1 deletion tests/system/small/operations/test_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ def test_getitem_w_array(index):


def test_getitem_w_struct_array():
if packaging.version.Version(pd.__version__) <= packaging.version.Version("1.5.0"):
if packaging.version.Version(pd.__version__) <= packaging.version.Version("1.5.3"):
pytest.skip("https://github.com/googleapis/python-bigquery/issues/1992")

pa_struct = pa.struct(
Expand Down