We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d224ae6 commit 4230b22Copy full SHA for 4230b22
platformio/dependencies.py
@@ -30,7 +30,7 @@ def get_core_dependencies():
30
31
def get_pip_dependencies():
32
core = [
33
- "bottle == 0.12.*",
+ "bottle == %s" % ("0.12.*" if PY36 else "0.13.*"),
34
"click >=8.0.4, <9",
35
"colorama",
36
"marshmallow == 3.*",
tests/commands/pkg/test_uninstall.py
@@ -117,7 +117,7 @@ def test_global_packages(
117
"ArduinoJson",
118
"AsyncMqttClient",
119
"Bounce2",
120
- "ESPAsyncTCP"
+ "ESPAsyncTCP",
121
]
122
123
# custom storage
0 commit comments