Skip to content

Commit ccbd7cc

Browse files
committed
Merge tag 'v0.3.2' into develop
Bump version to 0.3.2
2 parents 3e12009 + d2be849 commit ccbd7cc

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

get-platformio.py

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

pioinstaller/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import logging.config
1616

17-
VERSION = (0, 3, 1)
17+
VERSION = (0, 3, 2)
1818
__version__ = ".".join([str(s) for s in VERSION])
1919

2020
__title__ = "platformio-installer"

tests/test_core.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,19 @@ def test_install_pio_core(pio_installer_script, tmpdir, monkeypatch):
3434
assert subprocess.check_call([python_exe, "-m", "platformio", "--version"]) == 0
3535

3636
core_state_path = os.path.join(str(core_dir), "core-state.json")
37-
assert subprocess.check_call(
37+
assert (
38+
subprocess.check_call(
3839
[
3940
"python",
4041
pio_installer_script,
4142
"check",
4243
"core",
4344
"--dump-state=%s" % core_state_path,
44-
], stderr=subprocess.STDOUT
45-
) == 0
45+
],
46+
stderr=subprocess.STDOUT,
47+
)
48+
== 0
49+
)
4650
with open(core_state_path) as fp:
4751
json_info = json.load(fp)
4852
assert json_info.get("core_dir") == str(core_dir)

0 commit comments

Comments
 (0)