File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
src/lightning/pytorch/trainer Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ packaging
3
3
typing-extensions >=4.4.0, <4.8.0
4
4
deepdiff >=5.7.0, <6.6.0
5
5
starsessions >=1.2.1, <2.0 # strict
6
- fsspec >=2022.5.0, <2023.11.0
6
+ fsspec[http] >=2022.5.0, <2023.11.0
7
7
croniter >=1.3.0, <1.5.0 # strict; TODO: for now until we find something more robust.
8
8
traitlets >=5.3.0, <5.10.0
9
9
arrow >=1.2.0, <1.3.0
Original file line number Diff line number Diff line change 1
1
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
2
2
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment
3
3
4
- fsspec[http] >2021.06 .0, <2023.11.0
4
+ fsspec[http] >=2022.5 .0, <2023.11.0
5
5
s3fs >=2022.5.0, <2023.7.0
Original file line number Diff line number Diff line change 3
3
4
4
numpy >=1.17.2, <1.27.0
5
5
torch >=1.12.0, <2.2.0
6
- fsspec[http]>2021.06 .0, <2023.11.0
6
+ fsspec[http] >=2022.5 .0, <2023.11.0
7
7
packaging >=20.0, <=23.1
8
8
typing-extensions >=4.4.0, <4.8.0
9
9
lightning-utilities >=0.8.0, <0.10.0
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ numpy >=1.17.2, <1.27.0
5
5
torch >=1.12.0, <2.2.0
6
6
tqdm >=4.57.0, <4.67.0
7
7
PyYAML >=5.4, <6.1.0
8
- fsspec[http] >2021.06 .0, <2023.11.0
8
+ fsspec[http] >=2022.5 .0, <2023.11.0
9
9
torchmetrics >=0.7.0, <1.3.0 # needed for using fixed compare_version
10
10
packaging >=20.0, <=23.1
11
11
typing-extensions >=4.4.0, <4.8.0
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ def __warn_dataloader_iter_limitations(model: "pl.LightningModule") -> None:
164
164
"You are using the `dataloader_iter` step flavor. If you consume the iterator more than once per step, the"
165
165
" `batch_idx` argument in any hook that takes it will not match with the batch index of the last batch"
166
166
" consumed. This might have unforeseen effects on callbacks or code that expects to get the correct index."
167
- " This will also no work well with gradient accumulation. This feature is very experimental and subject to"
167
+ " This will also not work well with gradient accumulation. This feature is very experimental and subject to"
168
168
" change. Here be dragons." ,
169
169
category = PossibleUserWarning ,
170
170
)
You can’t perform that action at this time.
0 commit comments