Skip to content

Commit

Permalink
ci: prevent ibis from setting upper bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Nov 18, 2024
1 parent 6d9a7e9 commit edd4660
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- name: show-deps
run: uv pip freeze
- name: install ibis
run: uv pip install ibis-framework[duckdb]>=6.0.0 --system
run: uv pip install ibis-framework>=6.0.0 --system
# Ibis puts upper bounds on dependencies, and requires Python3.10+,
# which messes with other dependencies on lower Python versions
if: matrix.python-version == '3.11'
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_common(session: Session, coverage_threshold: float) -> None:
session.install("-e.", "-r", "requirements-dev.txt")

if session.python != "3.8":
session.install("ibis-framework[duckdb]>=6.0.0")
session.install("ibis-framework>=6.0.0")

session.run(
"pytest",
Expand Down

0 comments on commit edd4660

Please sign in to comment.