Bump version to 3.5.2a6

This commit is contained in:
Ivan Kravets
2018-01-30 15:25:17 +02:00
parent fc53cb4489
commit 4980d3e4bb
3 changed files with 4 additions and 5 deletions

View File

@@ -14,7 +14,7 @@
import sys
VERSION = (3, 5, "2a5")
VERSION = (3, 5, "2a6")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@@ -15,7 +15,6 @@
from __future__ import absolute_import
import atexit
import io
import re
import sys
from os import environ, remove, walk
@@ -85,7 +84,7 @@ class InoToCPPConverter(object):
def _gcc_preprocess(self, contents, out_file):
tmp_path = mkstemp()[1]
with io.open(tmp_path, mode="w", encoding="utf-8") as fp:
with open(tmp_path, "w") as fp:
fp.write(contents)
self.env.Execute(
self.env.VerboseAction(

View File

@@ -24,8 +24,8 @@ from platformio import util
def validate_cliresult():
def decorator(result):
assert result.exit_code == 0
assert not result.exception
assert result.exit_code == 0, result.output
assert not result.exception, result.output
return decorator