Skip to content

Commit c9016d6

Browse files
committed
Simplify PyPi dependencies // Resolve #5059
1 parent baab25a commit c9016d6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

platformio/dependencies.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ def get_core_dependencies():
2828

2929
def get_pip_dependencies():
3030
core = [
31-
'bottle == 0.12.*; python_version < "3.7"',
32-
'bottle == 0.13.*; python_version >= "3.7"',
31+
"bottle == 0.13.*",
3332
"click >=8.0.4, <9",
3433
"colorama",
3534
"marshmallow == 3.*",
@@ -43,9 +42,8 @@ def get_pip_dependencies():
4342
home = [
4443
# PIO Home requirements
4544
"ajsonrpc == 1.2.*",
46-
"starlette >=0.19, <0.43",
47-
'uvicorn == 0.16.0; python_version < "3.7"',
48-
'uvicorn >=0.16, <0.35; python_version >= "3.7"',
45+
"starlette >=0.19, <0.46",
46+
"uvicorn >=0.16, <0.35",
4947
"wsproto == 1.*",
5048
]
5149

0 commit comments

Comments
 (0)