Skip to content

Commit 836f086

Browse files
authored
ci: prevent ibis from setting upper bounds (where possible) (#1399)
1 parent 6d9a7e9 commit 836f086

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
- name: show-deps
8484
run: uv pip freeze
8585
- name: install ibis
86-
run: uv pip install ibis-framework[duckdb]>=6.0.0 --system
86+
run: uv pip install ibis-framework>=6.0.0 rich packaging pyarrow_hotfix --system
8787
# Ibis puts upper bounds on dependencies, and requires Python3.10+,
8888
# which messes with other dependencies on lower Python versions
8989
if: matrix.python-version == '3.11'

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def run_common(session: Session, coverage_threshold: float) -> None:
1717
session.install("-e.", "-r", "requirements-dev.txt")
1818

1919
if session.python != "3.8":
20-
session.install("ibis-framework[duckdb]>=6.0.0")
20+
session.install("ibis-framework>=6.0.0 rich packaging pyarrow_hotfix")
2121

2222
session.run(
2323
"pytest",

0 commit comments

Comments
 (0)