Skip to content

Commit 4230b22

Browse files
committed
Update bottle to 0.13.*
1 parent d224ae6 commit 4230b22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

platformio/dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_core_dependencies():
3030

3131
def get_pip_dependencies():
3232
core = [
33-
"bottle == 0.12.*",
33+
"bottle == %s" % ("0.12.*" if PY36 else "0.13.*"),
3434
"click >=8.0.4, <9",
3535
"colorama",
3636
"marshmallow == 3.*",

tests/commands/pkg/test_uninstall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_global_packages(
117117
"ArduinoJson",
118118
"AsyncMqttClient",
119119
"Bounce2",
120-
"ESPAsyncTCP"
120+
"ESPAsyncTCP",
121121
]
122122

123123
# custom storage

0 commit comments

Comments
 (0)