Skip to content

Commit

Permalink
[BUGFIX] Fix clickhouse CI failure with pandas 2.2 (#9470)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFarmer committed Feb 15, 2024
1 parent fc5f6b6 commit 53961f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions reqs/requirements-dev-clickhouse.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
clickhouse-sqlalchemy>=0.2.2
pandas<2.2.0; python_version >= "3.9"
3 changes: 2 additions & 1 deletion tests/test_packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,14 +184,15 @@ def test_polish_and_ratchet_pins_and_upper_bounds():
)

# Polish and ratchet this number down as low as possible
assert len(sorted_packages_with_pins_or_upper_bounds) == 77
assert len(sorted_packages_with_pins_or_upper_bounds) == 78
assert set(sorted_packages_with_pins_or_upper_bounds) == {
(
"requirements-dev-api-docs-test.txt",
"docstring-parser",
(("==", "0.15"),),
),
("requirements-dev-athena.txt", "pyathena", (("<", "3"), (">=", "2.0.0"))),
("requirements-dev-clickhouse.txt", "pandas", (("<", "2.2.0"),)),
("requirements-dev-contrib.txt", "adr-tools-python", (("==", "1.0.3"),)),
("requirements-dev-contrib.txt", "black", (("==", "23.10.1"),)),
("requirements-dev-contrib.txt", "mypy", (("==", "1.7.1"),)),
Expand Down

0 comments on commit 53961f2

Please sign in to comment.