Bump version to 4.4.0b5

This commit is contained in:
Ivan Kravets
2020-08-24 23:05:01 +03:00
parent c6a37ef880
commit 655e2856d1
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
import sys
VERSION = (4, 4, "0b4")
VERSION = (4, 4, "0b5")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -34,7 +34,7 @@ def get_core_package_dir(name):
pkg = pm.get_package(spec)
if pkg:
return pkg.path
assert pm.install(spec).path
assert pm.install(spec)
_remove_unnecessary_packages()
return pm.get_package(spec)