Skip to content

Commit 1040dff

Browse files
authored
chore: exclude pandas 2.2.x from testing (#391)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://togithub.com/googleapis/python-bigquery-dataframes/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Towards internal issue 322845272 🦕
1 parent 8b62d77 commit 1040dff

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

noxfile.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,11 @@ def prerelease(session: nox.sessions.Session, tests_path):
551551
# https://github.com/googleapis/python-bigquery-dataframes/issues/341
552552
# https://github.com/googleapis/python-bigquery-dataframes/issues/337
553553
# are resolved
554-
"pandas!=2.1.4, !=2.2.0rc0, !=2.2.0",
554+
#
555+
# We exclude each version individually so that we can continue to test
556+
# some prerelease packages. See:
557+
# https://github.com/googleapis/python-bigquery-dataframes/pull/268#discussion_r1423205172
558+
"pandas!=2.1.4, !=2.2.0rc0, !=2.2.0, !=2.2.1",
555559
)
556560
already_installed.add("pandas")
557561

0 commit comments

Comments
 (0)