Skip to content

CI/deps: clean up workflows and renovate config #352

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,13 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.13.3"

- uses: prefix-dev/setup-pixi@19eac09b398e3d0c747adc7921926a6d802df4da # v0.8.8
with:
pixi-version: v0.49.0
cache: true
environments: lint

- name: Lint
run: pixi run -e lint lint

Expand All @@ -59,7 +58,7 @@ jobs:

- uses: prefix-dev/setup-pixi@19eac09b398e3d0c747adc7921926a6d802df4da # v0.8.8
with:
pixi-version: v0.42.1
pixi-version: v0.49.0
cache: true
environments: ${{ matrix.environment }}

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- uses: prefix-dev/setup-pixi@19eac09b398e3d0c747adc7921926a6d802df4da # v0.8.8
with:
pixi-version: v0.42.1
pixi-version: v0.49.0
cache: true
environments: docs

- name: Build Docs
run: pixi run -e docs docs

- name: Upload Artifact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
name: docs-deploy
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Download Artifact
uses: dawidd6/action-download-artifact@4c1e823582f43b179e2cbb49c3eade4e41f992e2 # v10
with:
Expand Down
15 changes: 3 additions & 12 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"matchCurrentValue": "/^~?=/",
"enabled": false
}, {
"description": "Do not bump Python deps in the manifest or requires-python.",
"matchManagers": ["pixi", "pep621"],
"description": "Do not bump requires-python.",
"matchManagers": ["pep621"],
"matchPackageNames": ["python"],
"enabled": false
}, {
Expand All @@ -28,18 +28,9 @@
}, {
"description": "Block PRs for updates blocked on dropping Python 3.10.",
"matchManagers": ["pixi"],
"matchUpdateTypes": ["major"],
"matchPackageNames": ["sphinx", "ipython", "sphinx-autodoc-typehints"],
"enabled": false
}, {
"description": "Waiting for Numba to support NumPy 2.2.",
"matchManagers": ["pixi"],
"matchPackageNames": ["numpy"],
"enabled": false
}, {
"description": "Block Python CI updates as setup-python lags behind (gh-194).",
"matchManagers": ["github-actions"],
"matchPackageNames": ["python"],
"enabled": false
}, {
"description": "Group Dask packages.",
"matchPackageNames": ["dask", "dask-core"],
Expand Down