Skip to content

Commit 724a01c

Browse files
authored
Merge branch 'master' into feat/device_name
2 parents 0cfa761 + d204cb1 commit 724a01c

11 files changed

+11
-7
lines changed

.github/workflows/_build-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
pkg-name: ${{ fromJSON(inputs.pkg-names) }}
2727
steps:
2828
- uses: actions/checkout@v5
29-
- uses: actions/setup-python@v5
29+
- uses: actions/setup-python@v6
3030
with:
3131
python-version: "3.x"
3232

.github/workflows/ci-pkg-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
python-version: ["3.9", "3.11"]
4848
steps:
4949
- uses: actions/checkout@v5
50-
- uses: actions/setup-python@v5
50+
- uses: actions/setup-python@v6
5151
with:
5252
python-version: ${{ matrix.python-version }}
5353
- uses: actions/download-artifact@v5

.github/workflows/ci-tests-fabric.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
TORCH_URL_TEST: "https://download.pytorch.org/whl/test/cpu/"
6767
# TODO: Remove this - Enable running MPS tests on this platform
6868
DISABLE_MPS: ${{ matrix.os == 'macOS-14' && '1' || '0' }}
69+
UV_TORCH_BACKEND: "cpu"
6970
steps:
7071
- uses: actions/checkout@v5
7172

.github/workflows/ci-tests-pytorch.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ jobs:
7171
FREEZE_REQUIREMENTS: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }}
7272
# TODO: Remove this - Enable running MPS tests on this platform
7373
DISABLE_MPS: ${{ matrix.os == 'macOS-14' && '1' || '0' }}
74+
UV_TORCH_BACKEND: "cpu"
7475
steps:
7576
- uses: actions/checkout@v5
7677

.github/workflows/code-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-22.04
3030
steps:
3131
- uses: actions/checkout@v5
32-
- uses: actions/setup-python@v5
32+
- uses: actions/setup-python@v6
3333
with:
3434
python-version: "3.11"
3535

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
# only Pytorch has/uses notebooks
7171
submodules: ${{ matrix.pkg-name == 'pytorch' }}
7272
lfs: ${{ matrix.pkg-name == 'pytorch' }}
73-
- uses: actions/setup-python@v5
73+
- uses: actions/setup-python@v6
7474
with:
7575
python-version: "3.10"
7676

.github/workflows/labeler-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
pull-requests: write
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/labeler@v5
11+
- uses: actions/labeler@v6
1212
with:
1313
repo-token: "${{ secrets.GITHUB_TOKEN }}"
1414
configuration-path: .github/label-change.yml

.github/workflows/release-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
PKG_NAME: "lightning"
2525
steps:
2626
- uses: actions/checkout@v5
27-
- uses: actions/setup-python@v5
27+
- uses: actions/setup-python@v6
2828
with:
2929
python-version: 3.9
3030

.github/workflows/release-pkg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
tag: ${{ steps.lai-package.outputs.version }}
5656
steps:
5757
- uses: actions/checkout@v5
58-
- uses: actions/setup-python@v5
58+
- uses: actions/setup-python@v6
5959
with:
6060
python-version: ${{ env.PYTHON_VER }}
6161
- name: install Package

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ filterwarnings = [
182182
# "error::DeprecationWarning",
183183
"error::FutureWarning",
184184
"ignore::FutureWarning:onnxscript", # Temporary ignore until onnxscript is updated
185+
"ignore:The pynvml package is deprecated:FutureWarning", # Ignore pynvml deprecation warning, since it is not installed by PL directly
185186
]
186187
xfail_strict = true
187188
junit_duration_report = "call"

0 commit comments

Comments
 (0)