Skip to content

Commit 57fc3f1

Browse files
authored
Remove Pandas 3 Version Restriction (#2968)
<!-- Thanks for opening a pull request! --> <!-- In the case this PR will resolve an issue, please replace ${GITHUB_ISSUE_ID} below with the actual Github issue id. --> <!-- Closes #${GITHUB_ISSUE_ID} --> Closes #2939. # Rationale for this change Pandas 3 is released but can't be used with PyIceberg due to the "<3.0.0" version restriction of PyIceberg. This removes the version restriction which doesn't seem necessary. ## Are these changes tested? N/A. ## Are there any user-facing changes? No. <!-- In the case of user-facing changes, please add the changelog label. -->
1 parent 3c522e4 commit 57fc3f1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pyarrow = [
5858
"pyiceberg-core>=0.5.1,<0.9.0",
5959
]
6060
pandas = [
61-
"pandas>=1.0.0,<3.0.0",
61+
"pandas>=1.0.0",
6262
"pyarrow>=17.0.0",
6363
]
6464
duckdb = [
@@ -68,7 +68,7 @@ duckdb = [
6868
ray = [
6969
"ray>=2.10.0,<3.0.0",
7070
"pyarrow>=17.0.0",
71-
"pandas>=1.0.0,<3.0.0",
71+
"pandas>=1.0.0",
7272
]
7373
bodo = ["bodo>=2025.7.4"]
7474
daft = ["daft>=0.5.0"]

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)