Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
👷 fix matrix packages installation in CI (#45)
Browse files Browse the repository at this point in the history
* 🐛 fix matrix packages intallation in CI

* re-introduce dagster 1.5 to CI tests
  • Loading branch information
danielgafni authored Nov 1, 2023
1 parent 75b7770 commit 8fe5d43
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- "3.8"
dagster_version:
- "1.4.0"
# - "1.5.0" disabled until https://github.com/dagster-io/dagster/issues/17436 is fixed
- "1.5.0"
polars_version:
- "0.17.0"
- "0.18.0"
Expand All @@ -51,7 +51,9 @@ jobs:
virtualenvs-in-project: false
installer-parallel: true
- name: Install dependencies
run: poetry install --all-extras --sync && pip install --force-reinstall polars~=${{ matrix.polars_version }} dagster~=${{ matrix.dagster_version }}
run: poetry install --all-extras --sync
- name: Install matrix overrides
run: poetry add polars=~${{ matrix.polars_version }} dagster=~${{ matrix.dagster_version }}&& poetry install --sync --all-extras
- name: Print polars info
run: python -c 'import polars; print(polars.show_versions())'
- name: Print dagster info
Expand All @@ -74,7 +76,7 @@ jobs:
- "3.8"
dagster_version:
- "1.4.0"
# - "1.5.0" disabled until https://github.com/dagster-io/dagster/issues/17436 is fixed
- "1.5.0"
polars_version:
- "0.17.0"
- "0.18.0"
Expand All @@ -93,7 +95,9 @@ jobs:
virtualenvs-in-project: false
installer-parallel: true
- name: Install dependencies
run: poetry install --all-extras --sync && pip install --force-reinstall polars~=${{ matrix.polars_version }} dagster~=${{ matrix.dagster_version }}
run: poetry install --all-extras --sync
- name: Install matrix overrides
run: poetry add polars=~${{ matrix.polars_version }} dagster=~${{ matrix.dagster_version }} && poetry install --sync --all-extras
- name: Run pre-commit hooks
run: pre-commit run --all-files

Expand Down

0 comments on commit 8fe5d43

Please sign in to comment.