Skip to content

Commit

Permalink
Simplify PyPi dependencies // Resolve #5059
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jan 3, 2025
1 parent baab25a commit c9016d6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions platformio/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ def get_core_dependencies():

def get_pip_dependencies():
core = [
'bottle == 0.12.*; python_version < "3.7"',
'bottle == 0.13.*; python_version >= "3.7"',
"bottle == 0.13.*",
"click >=8.0.4, <9",
"colorama",
"marshmallow == 3.*",
Expand All @@ -43,9 +42,8 @@ def get_pip_dependencies():
home = [
# PIO Home requirements
"ajsonrpc == 1.2.*",
"starlette >=0.19, <0.43",
'uvicorn == 0.16.0; python_version < "3.7"',
'uvicorn >=0.16, <0.35; python_version >= "3.7"',
"starlette >=0.19, <0.46",
"uvicorn >=0.16, <0.35",
"wsproto == 1.*",
]

Expand Down

0 comments on commit c9016d6

Please sign in to comment.