Skip to content

Commit 5c9a0fd

Browse files
authored
Merge branch 'master' into fix/19427/double-iter
2 parents 7ccd72d + d5208f7 commit 5c9a0fd

File tree

11 files changed

+14
-42
lines changed

11 files changed

+14
-42
lines changed

_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

tests/tests_pytorch/loggers/test_wandb.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
from lightning.pytorch.demos.boring_classes import BoringModel
2727
from lightning.pytorch.loggers import TensorBoardLogger, WandbLogger
2828
from lightning.pytorch.utilities.exceptions import MisconfigurationException
29-
from tests_pytorch.test_cli import _xfail_python_ge_3_11_9
3029

3130

3231
def test_wandb_project_name(wandb_mock):
@@ -645,7 +644,6 @@ def test_wandb_logger_download_artifact(wandb_mock, tmp_path):
645644
wandb_mock.Api().artifact.assert_called_once_with("test_artifact", type="model")
646645

647646

648-
@_xfail_python_ge_3_11_9
649647
@pytest.mark.parametrize(("log_model", "expected"), [("True", True), ("False", False), ("all", "all")])
650648
def test_wandb_logger_cli_integration(log_model, expected, wandb_mock, monkeypatch, tmp_path):
651649
"""Test that the WandbLogger can be used with the LightningCLI."""

0 commit comments

Comments
 (0)