From edd46607c13fdb904243739a375447e6232679c2 Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Mon, 18 Nov 2024 12:29:20 +0000 Subject: [PATCH] ci: prevent ibis from setting upper bounds --- .github/workflows/pytest.yml | 2 +- noxfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 17fff6b38..e4a8208b7 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -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' diff --git a/noxfile.py b/noxfile.py index aec70add4..887382f36 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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",