Skip to content

Commit c060c68

Browse files
Bordacarmoccapre-commit-ci[bot]
authored
fixing for release 1.9.5 (#17266)
* fix imports * ... * barebones * ci * ci * Disable 2.0 testing * Revert "Disable 2.0 testing" This reverts commit 6673c04. * skips * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * skip * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * skip * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * skip * skip * import * init --------- Co-authored-by: Carlos Mocholí <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent db9a4f7 commit c060c68

File tree

24 files changed

+134
-106
lines changed

24 files changed

+134
-106
lines changed

.github/workflows/ci-tests-pytorch.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ jobs:
173173
run: |
174174
python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \
175175
-m pytest . -v \
176-
--timeout=${TEST_TIMEOUT} --durations=50 \
177-
--reruns 3 --reruns-delay 1
176+
--timeout=${TEST_TIMEOUT} --durations=50
178177
179178
- name: Statistics
180179
if: success()

requirements/app/base.txt

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
lightning-cloud>=0.5.27
1+
lightning-cloud >=0.5.27
22
packaging
3-
typing-extensions>=4.0.0, <=4.4.0
4-
deepdiff>=5.7.0, <6.2.4
5-
starsessions>=1.2.1, <2.0 # strict
6-
fsspec>=2022.5.0, <=2022.7.1
7-
croniter>=1.3.0, <1.4.0 # strict; TODO: for now until we find something more robust.
8-
traitlets>=5.3.0, <5.9.0
9-
arrow>=1.2.0, <1.2.4
10-
lightning-utilities>=0.6.0.post0, <0.7.0
11-
beautifulsoup4>=4.8.0, <4.11.2
12-
inquirer>=2.10.0, <=3.1.2
13-
psutil<5.9.5
14-
click<=8.1.3
15-
fastapi<0.89.0 # strict; TODO: broken serializations
3+
typing-extensions >=4.0.0, <=4.4.0
4+
deepdiff >=5.7.0, <6.2.4
5+
starsessions >=1.2.1, <2.0 # strict
6+
fsspec >=2022.5.0, <=2022.7.1
7+
croniter >=1.3.0, <1.4.0 # strict; TODO: for now until we find something more robust.
8+
traitlets >=5.3.0, <5.9.0
9+
arrow >=1.2.0, <1.2.4
10+
lightning-utilities >=0.6.0.post0, <0.7.0
11+
beautifulsoup4 >=4.8.0, <4.11.2
12+
inquirer >=2.10.0, <=3.1.2
13+
psutil <5.9.5
14+
click <=8.1.3
15+
fastapi <0.89.0 # strict; TODO: broken serializations
1616

17-
dateutils<=0.6.12
18-
Jinja2<=3.1.2
19-
pydantic<=1.10.4
20-
PyYAML<=6.0
21-
requests<2.28.3
22-
rich<=13.0.1
23-
starlette<0.24.0
24-
urllib3<=1.26.13
25-
uvicorn<=0.17.6
26-
websocket-client<1.5.2
27-
websockets<=10.4
17+
dateutils <=0.6.12
18+
Jinja2 <=3.1.2
19+
pydantic <=1.10.4
20+
PyYAML <=6.0
21+
requests <2.28.3
22+
rich <=13.0.1
23+
starlette <0.24.0
24+
urllib3 <=1.26.13
25+
uvicorn <=0.17.6
26+
websocket-client <1.5.2
27+
websockets <=10.4

requirements/app/cloud.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
redis>=4.0.1, <=4.2.4
2-
docker>=5.0.0, <6.0.2
3-
s3fs>=2022.5.0, <2022.11.1
1+
redis >=4.0.1, <=4.2.4
2+
docker >=5.0.0, <6.0.2
3+
s3fs >=2022.5.0, <2022.11.1
44
# setuptools==59.5.0

requirements/app/components.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# deps required by components in the lightning app repository (src/lightning_app/components)
2-
lightning_api_access>=0.0.3 # serve
3-
aiohttp>=3.8.0, <=3.8.3 # auto_scaler
2+
lightning_api_access >=0.0.3 # serve
3+
aiohttp >=3.8.0, <=3.8.3 # auto_scaler
44
# lightning-fabric>=1.9.0 # multinode # uncomment when released. it's okay to comment for now because pl includes it
5-
pytorch-lightning>1.8.0 # multinode
5+
pytorch-lightning >1.8.0, <2.0.0 # multinode

requirements/app/test.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
coverage==6.5.0
2-
codecov==2.1.12
3-
pytest==7.2.0
4-
pytest-timeout==2.1.0
5-
pytest-cov==4.0.0
6-
pytest-doctestplus>=0.9.0
7-
pytest-asyncio==0.20.3
8-
playwright==1.30.0
1+
coverage ==6.5.0
2+
codecov ==2.1.12
3+
pytest ==7.2.0
4+
pytest-timeout ==2.1.0
5+
pytest-cov ==4.0.0
6+
pytest-doctestplus >=0.9.0
7+
pytest-asyncio ==0.20.3
8+
playwright ==1.30.0
99
httpx
10-
trio<0.22.0
10+
trio <0.22.0
1111
pympler
1212
psutil
13-
setuptools<65.7.0
13+
setuptools <65.7.0
1414
sqlmodel
1515
requests-mock

requirements/app/ui.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
streamlit>=1.13.0, <1.16.1
2-
panel>=0.12.7, <=0.13.1
1+
streamlit >=1.13.0, <1.16.1
2+
panel >=0.12.7, <=0.13.1

requirements/fabric/base.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
22
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment
33

4-
numpy>=1.17.2, <1.24.2
5-
torch>=1.10.0, <=2.0.0
6-
fsspec[http]>2021.06.0, <2023.2.0
7-
packaging>=17.1, <=23.0
8-
typing-extensions>=4.0.0, <=4.4.0
9-
lightning-utilities>=0.6.0.post0, <0.7.0
4+
numpy >=1.17.2, <1.24.2
5+
torch >=1.10.0, <=2.0.0
6+
fsspec[http] >2021.06.0, <2023.2.0
7+
packaging >=17.1, <=23.0
8+
typing-extensions >=4.0.0, <=4.4.0
9+
lightning-utilities >=0.6.0.post0, <0.7.0

requirements/fabric/examples.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
22
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment
33

4-
torchvision>=0.10.0, <=0.15.1
5-
torchmetrics>=0.10.0, <0.12.0
4+
torchvision >=0.10.0, <=0.15.1
5+
torchmetrics >=0.10.0, <0.12.0

requirements/fabric/strategies.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
22
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment
3-
deepspeed>=0.6.0, <=0.8.0; python_version>"3.7" and platform_system != "Windows"
3+
4+
deepspeed >=0.6.0, <=0.8.0; python_version>"3.7" and platform_system != "Windows"

requirements/fabric/test.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
coverage==6.5.0
2-
codecov==2.1.12
3-
pytest==7.2.0
4-
pytest-cov==4.0.0
5-
pre-commit==2.20.0
6-
click==8.1.3
7-
tensorboardX>=2.2, <=2.5.1 # min version is set by torch.onnx missing attribute
1+
coverage ==6.5.0
2+
codecov ==2.1.12
3+
pytest ==7.2.0
4+
pytest-cov ==4.0.0
5+
pre-commit ==2.20.0
6+
click ==8.1.3
7+
tensorboardX >=2.2, <=2.5.1 # min version is set by torch.onnx missing attribute

0 commit comments

Comments
 (0)