Skip to content

Commit 7c1f46b

Browse files
committed
remove pandas 3.0.0 from supported versions
1 parent 1442da3 commit 7c1f46b

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

noxfile.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -219,14 +219,11 @@ def prerelease(session, tests_path):
219219
"--upgrade",
220220
"pyarrow",
221221
)
222-
# Avoid pandas==2.2.0rc0 as this version causes PyArrow to fail. Once newer
223-
# prerelease comes out, this constraint can be removed. See
224-
# https://github.com/googleapis/python-db-dtypes-pandas/issues/234
225222
session.install(
226223
"--prefer-binary",
227224
"--pre",
228225
"--upgrade",
229-
"pandas!=2.2.0rc0",
226+
"pandas<3.0.0rc0",
230227
)
231228
session.install(
232229
"mock",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"numpy >= 1.24.0, <= 2.2.6 ; python_version == '3.10'",
3434
"numpy >= 1.24.0 ; python_version != '3.10'",
3535
"packaging >= 24.2.0",
36-
"pandas >= 1.5.3",
36+
"pandas >= 1.5.3, < 3.0.0",
3737
"pyarrow >= 13.0.0",
3838
]
3939

0 commit comments

Comments
 (0)