Skip to content

Commit c2f340f

Browse files
committed
Exclude pandas 2.2.2 from py3.10/3.11 builds.
1 parent 602a419 commit c2f340f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ requires = [
2323
"lru_dict",
2424
"pillow",
2525
"numpy",
26-
"pandas",
26+
# Pandas 2.2.2 doesn't publish ARM64 macOS wheels for Py 3.9 or 3.10
27+
"pandas != 2.2.2; python_version < '3.11'",
28+
"pandas; python_version >= '3.11'"
2729
]
2830
test_requires = [
2931
"pytest",

0 commit comments

Comments
 (0)