Skip to content

Commit 973cd17

Browse files
committed
Fix CI not passing
apparently pandas doesn't build under pypy reliably, so avoid it from installing automatically in incompatible environments.
1 parent 121c1e7 commit 973cd17

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dev = [
3434
"mypy>=1.11.0",
3535
"pytest>=8.0",
3636
"pytest-asyncio>=0.23",
37-
"pandas>=2.2.1,<3.0.0",
37+
"pandas>=2.2.1,<3.0.0; implementation_name != 'pypy'",
3838
"ruff>=0.11.13,<0.12.0",
3939
]
4040
docs = [
@@ -60,7 +60,7 @@ optional = true
6060
mypy = ">=1.11.0"
6161
pytest = ">=8.0"
6262
pytest-asyncio = ">=0.23"
63-
pandas = "^2.2.1"
63+
pandas = { version = "^2.2.1", markers = "implementation_name != 'pypy'" }
6464
ruff = "^0.11.13"
6565

6666

0 commit comments

Comments
 (0)