Skip to content

Commit 0b9b2a3

Browse files
authored
Merge branch 'master' into fsdp-grad-clip-by-norm
2 parents 7f7987e + 1b12c4b commit 0b9b2a3

File tree

12 files changed

+26
-44
lines changed

12 files changed

+26
-44
lines changed

.github/ISSUE_TEMPLATE/1_bug_report.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,22 @@ body:
4646
attributes:
4747
value: "**Note: The rest of this form is optional, but filling it out may help us to provide better support.**"
4848

49+
- type: input
50+
attributes:
51+
label: Reproduced in studio
52+
description: >
53+
Create a new Lightning Studio with code that reproduces the issue and share the link.
54+
Also include all the relevant files and data required to reproduce shared issue.
55+
In case the code does not crash, please add assert statements to show what is the real and expected output.
56+
A simple guide on how to create such a studio can be found [here](https://www.youtube.com/watch?v=YcW-2Zt_bFg&ab_channel=LightningAI).
57+
placeholder: https://lightning.ai/live-session/...
58+
validations:
59+
required: false
4960
- type: textarea
5061
attributes:
5162
label: How to reproduce the bug
5263
description: >
53-
Provide steps and example code here.
54-
You can also paste a link to Google Colab (see our [Colab bug report template](https://colab.research.google.com/github/Lightning-AI/lightning/blob/master/examples/pytorch/bug_report/bug_report_model.ipynb)) or adapt this minimal [snippet](https://github.com/Lightning-AI/lightning/blob/master/examples/pytorch/bug_report/bug_report_model.py).
64+
In the special case when the issue can't be reproduced in a studio, provide steps and example code here.
5565
placeholder: |
5666
```python
5767
# Sample code to reproduce the problem

_notebooks

requirements/ci.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ setuptools <70.1.1
22
wheel <0.46.0
33
awscli >=1.30.0, <1.41.0
44
twine ==6.0.1
5-
importlib-metadata <8.0.0
5+
importlib-metadata <9.0.0
66
wget
7-
pkginfo ==1.12.0
7+
pkginfo ==1.12.1.2
88
packaging <25.1

requirements/docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ myst-parser >=0.18.1, <3.0.0
33
nbsphinx >=0.8.5, <=0.9.2
44
nbconvert <7.14 # temporary fix for https://github.com/jupyter/nbconvert/issues/2092
55
pandoc >=1.0, <=2.3
6-
docutils >=0.16, <0.21
6+
docutils >=0.16, <0.22
77
sphinxcontrib-fulltoc >=1.0, <=1.2.0
88
sphinxcontrib-mockautodoc
99
sphinx-autobuild

requirements/fabric/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
torch >=2.1.0, <2.8.0
55
fsspec[http] >=2022.5.0, <2025.4.0
66
packaging >=20.0, <=25.0
7-
typing-extensions >=4.4.0, <4.11.0
7+
typing-extensions >=4.4.0, <4.14.0
88
lightning-utilities >=0.10.0, <0.15.0

requirements/fabric/test.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ coverage ==7.8.0
22
numpy >=1.17.2, <1.27.0
33
pytest ==8.3.5
44
pytest-cov ==6.1.1
5-
pytest-timeout ==2.1.0
5+
pytest-timeout ==2.3.1
66
pytest-rerunfailures ==12.0
7-
pytest-random-order ==1.1.0
7+
pytest-random-order ==1.1.1
88
click ==8.1.7
99
tensorboardX >=2.2, <2.7.0 # min version is set by torch.onnx missing attribute

requirements/pytorch/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ PyYAML >=5.4, <6.1.0
77
fsspec[http] >=2022.5.0, <2025.4.0
88
torchmetrics >=0.7.0, <1.8.0
99
packaging >=20.0, <=25.0
10-
typing-extensions >=4.4.0, <4.11.0
10+
typing-extensions >=4.4.0, <4.14.0
1111
lightning-utilities >=0.10.0, <0.15.0

requirements/pytorch/docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r ../docs.txt
22

33
nbformat # used for generate empty notebook
4-
ipython[notebook] <8.7.0
4+
ipython[notebook] <8.19.0
55
setuptools<58.0 # workaround for `error in ipython setup command: use_2to3 is invalid.`
66

77
#-r ../../_notebooks/.actions/requires.txt

requirements/pytorch/extra.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
matplotlib>3.1, <3.9.0
66
omegaconf >=2.2.3, <2.4.0
77
hydra-core >=1.2.0, <1.4.0
8-
jsonargparse[signatures] >=4.27.7, <=4.35.0
8+
jsonargparse[signatures] >=4.28.0, <=4.40.0
99
rich >=12.3.0, <13.6.0
1010
tensorboardX >=2.2, <2.7.0 # min version is set by torch.onnx missing attribute
1111
bitsandbytes >=0.45.2,<0.45.3; platform_system != "Darwin"

requirements/pytorch/test.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
coverage ==7.8.0
22
pytest ==8.3.5
33
pytest-cov ==6.1.1
4-
pytest-timeout ==2.1.0
4+
pytest-timeout ==2.3.1
55
pytest-rerunfailures ==12.0
6-
pytest-random-order ==1.1.0
6+
pytest-random-order ==1.1.1
77

88
# needed in tests
99
cloudpickle >=1.3, <3.2.0
1010
scikit-learn >0.22.1, <1.7.0
1111
numpy >=1.17.2, <1.27.0
12-
onnx >=1.12.0, <1.17.0
12+
onnx >=1.12.0, <1.18.0
1313
onnxruntime >=1.12.0, <1.21.0
14-
psutil <5.9.6 # for `DeviceStatsMonitor`
14+
psutil <7.0.1 # for `DeviceStatsMonitor`
1515
pandas >1.0, <2.3.0 # needed in benchmarks
1616
fastapi # for `ServableModuleValidator` # not setting version as re-defined in App
1717
uvicorn # for `ServableModuleValidator` # not setting version as re-defined in App

0 commit comments

Comments
 (0)