Skip to content

Commit 7355f4f

Browse files
authored
Merge branch 'master' into fix-PE
2 parents 4aa66e2 + 5be58f6 commit 7355f4f

File tree

22 files changed

+78
-50
lines changed

22 files changed

+78
-50
lines changed

.github/workflows/_build-packages.yml

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
name: ${{ inputs.artifact-name }}
3434
path: dist
3535
retention-days: ${{ steps.keep-artifact.outputs.DAYS }}
36+
include-hidden-files: true
3637

3738
build-packages:
3839
needs: init
@@ -66,3 +67,4 @@ jobs:
6667
with:
6768
name: ${{ inputs.artifact-name }}
6869
path: pypi
70+
include-hidden-files: true

.github/workflows/_legacy-checkpoints.yml

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ jobs:
109109
name: checkpoints-${{ github.sha }}
110110
path: ${{ env.LEGACY_FOLDER }}/checkpoints/
111111
retention-days: ${{ env.KEEP_DAYS }}
112+
include-hidden-files: true
112113

113114
- run: pip install -r requirements/ci.txt
114115
- name: Upload checkpoints to S3

.github/workflows/docs-build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ jobs:
134134
name: docs-${{ matrix.pkg-name }}-${{ github.sha }}
135135
path: docs/build/html/
136136
retention-days: ${{ env.ARTIFACT_DAYS }}
137+
include-hidden-files: true
137138

138139
#- name: Dump handy wheels
139140
# if: github.event_name == 'push' && github.ref == 'refs/heads/master'

.github/workflows/release-nightly.yml

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
with:
4545
name: nightly-packages-${{ github.sha }}
4646
path: dist
47+
include-hidden-files: true
4748

4849
publish-packages:
4950
runs-on: ubuntu-22.04
+11-8
Loading
Loading
Loading

docs/source-fabric/fundamentals/launch.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ This is essentially the same as running ``python path/to/your/script.py``, but i
116116
machine.
117117
--precision [16-mixed|bf16-mixed|32-true|64-true|64|32|16|bf16]
118118
Double precision (``64-true`` or ``64``),
119-
full precision (``32-true`` or ``64``), half
119+
full precision (``32-true`` or ``32``), half
120120
precision (``16-mixed`` or ``16``) or
121121
bfloat16 precision (``bf16-mixed`` or
122122
``bf16``)
+10-1
Loading

docs/source-pytorch/visualize/supported_exp_managers.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Here's the full documentation for the :class:`~lightning.pytorch.loggers.TensorB
134134

135135
Weights and Biases
136136
==================
137-
To use `Weights and Biases <https://docs.wandb.ai/integrations/lightning/>`_ (wandb) first install the wandb package:
137+
To use `Weights and Biases <https://docs.wandb.ai/guides/integrations/lightning>`_ (wandb) first install the wandb package:
138138

139139
.. code-block:: bash
140140

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ ignore = [
7676
"S108",
7777
"E203", # conflicts with black
7878
]
79-
ignore-init-module-imports = true
8079

8180
[tool.ruff.lint.per-file-ignores]
8281
".actions/*" = ["S101", "S310"]

requirements/typing.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
mypy==1.11.0
2-
torch==2.4.0
2+
torch==2.4.1
33

44
types-Markdown
55
types-PyYAML

0 commit comments

Comments
 (0)