Skip to content
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/ci-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install uv and setup python
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
activate-environment: true
python-version: "3.12"
Expand All @@ -34,7 +34,7 @@ jobs:

- name: Upload docs artifact
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: docs-build
path: docs/build/html/
Expand All @@ -46,10 +46,10 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install uv and setup python
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
activate-environment: true
python-version: "3.12"
Expand All @@ -71,10 +71,10 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install uv and setup python
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
activate-environment: true
python-version: "3.12"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ jobs:
UV_TORCH_BACKEND: cpu

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install uv and setup python
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
activate-environment: true
python-version: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-integrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
UV_TORCH_BACKEND: cpu

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install uv and setup python
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
activate-environment: true
python-version: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-mypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
matrix:
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install uv and setup python
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
activate-environment: true
python-version: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-unittests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
UV_TORCH_BACKEND: cpu

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install uv and setup python
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
activate-environment: true
python-version: ${{ matrix.python-version }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/push_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.8"
cache: "pip"
Expand Down Expand Up @@ -50,14 +50,14 @@ jobs:
# TODO: add back once ownership is transferred
# - name: Publish to Test PyPI
# if: startsWith(github.event.ref, 'refs/tags')
# uses: pypa/gh-action-pypi-publish@v1.12.4
# uses: pypa/gh-action-pypi-publish@v1.14.0
# with:
# repository_url: https://test.pypi.org/legacy/
# verbose: true

- name: Publish distribution 📦 to PyPI
if: startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.12.4
uses: pypa/gh-action-pypi-publish@v1.14.0
with:
user: __token__
password: ${{ secrets.pypi_password }}
Loading