Skip to content

Commit 075bfcf

Browse files
authored
Merge branch 'master' into generic-weight-averaging
2 parents c8d50bd + ea59e40 commit 075bfcf

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/workflows/call-clear-cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
cron-clear:
2525
if: github.event_name == 'schedule' || github.event_name == 'pull_request'
26-
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.11.9
26+
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.12.0
2727
with:
2828
scripts-ref: v0.11.8
2929
dry-run: ${{ github.event_name == 'pull_request' }}
@@ -32,7 +32,7 @@ jobs:
3232

3333
direct-clear:
3434
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request'
35-
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.11.9
35+
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.12.0
3636
with:
3737
scripts-ref: v0.11.8
3838
dry-run: ${{ github.event_name == 'pull_request' }}

.github/workflows/ci-check-md-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
check-md-links:
17-
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.11.9
17+
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.12.0
1818
with:
1919
config-file: ".github/markdown-links-config.json"
2020
base-branch: "master"

.github/workflows/ci-schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
check:
11-
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.11.9
11+
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.12.0
1212
with:
1313
# skip azure due to the wrong schema file by MSFT
1414
# https://github.com/Lightning-AI/lightning-flash/pull/1455#issuecomment-1244793607

docs/source-pytorch/starter/converting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,6 @@ The predict loop will not be used until you call :meth:`~lightning.pytorch.train
192192
model = LitModel()
193193
trainer.predict(model)
194194
195-
.. note:: ``model.eval()`` and ``torch.no_grad()`` are called automatically for testing.
195+
.. note:: ``model.eval()`` and ``torch.no_grad()`` are called automatically for predicting.
196196

197197
.. tip:: ``trainer.predict()`` loads the best checkpoint automatically by default if checkpointing is enabled.

requirements/ci.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
setuptools <70.1.1
22
wheel <0.44.0
33
awscli >=1.30.0, <1.31.0
4-
twine ==4.0.1
4+
twine ==6.0.1
55
importlib-metadata <8.0.0
66
wget
7+
pkginfo ==1.12.0
78
packaging <24.2

0 commit comments

Comments
 (0)