Skip to content

Commit b02fc2c

Browse files
authored
fix: pin prerelease tests to pandas 2.1.3 to unblock e2e tests (#268)
* fix: pin prerelease tests to pandas 2.1.3 to unblock e2e tests * specify excluded pandas version differently, to automatically test on a release
1 parent e735412 commit b02fc2c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

noxfile.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,9 @@ def prerelease(session: nox.sessions.Session, tests_path):
518518
"--prefer-binary",
519519
"--pre",
520520
"--upgrade",
521-
"pandas",
521+
# TODO(shobs): Remove tying to version 2.1.3 after
522+
# https://github.com/pandas-dev/pandas/issues/56463 is resolved
523+
"pandas!=2.1.4",
522524
)
523525
already_installed.add("pandas")
524526

0 commit comments

Comments
 (0)