Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/assign-milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
issues: write

name: Assign Latest Milestone
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- uses: actions/github-script@v8
name: Run script
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backport-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
Backport:
environment:
name: PR Backport
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: github.event.pull_request.merged && contains( github.event.pull_request.labels.*.name, 'backport' )
permissions:
pull-requests: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
needs: Docs
environment:
name: github-pages
runs-on: ubuntu-latest
runs-on: ubuntu-slim
env:
DOC_VERSION: dev
permissions:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
name: "Manage doc versions"
environment:
name: github-pages
runs-on: ubuntu-latest
runs-on: ubuntu-slim
permissions:
contents: write

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
lint:
name: Run Lint Tools
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Report
needs: Builds
if: failure() || github.event_name == 'pull_request'
runs-on: ubuntu-latest
runs-on: ubuntu-slim
permissions:
issues: write

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
codecov:
name: CodeCov Upload
needs: CondaTests
runs-on: ubuntu-latest
runs-on: ubuntu-slim
environment:
name: CodeCov
timeout-minutes: 2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
codecov:
needs: PyPITests
name: CodeCov Upload
runs-on: ubuntu-latest
runs-on: ubuntu-slim
environment:
name: CodeCov
timeout-minutes: 2
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ filterwarnings = [
# Pandas >=2.2 warns about PyArrow being a future dependency
'ignore:\nPyarrow will become a required dependency of pandas:DeprecationWarning',
# Not yet fixed in xarray
"ignore:__array__ implementation doesn't accept a copy keyword:DeprecationWarning"
"ignore:__array__ implementation doesn't accept a copy keyword:DeprecationWarning",
# Needs matplotlib >=3.10.7 for fixes
"ignore:'\\S+' deprecated - use '\\S+':DeprecationWarning:matplotlib._fontconfig_pattern",
"ignore:'\\S+' deprecated - use '\\S+':DeprecationWarning:matplotlib._mathtext"
]

[tool.ruff]
Expand Down
Loading