Skip to content

Commit 388b53b

Browse files
committed
Merge branch 'release/v1.1.1'
2 parents 805a927 + 0ff1f1f commit 388b53b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ isort:
66
isort ./pioinstaller
77

88
format:
9-
black --target-version py27 ./pioinstaller
10-
black --target-version py27 ./tests
9+
black ./pioinstaller
10+
black ./tests
1111

1212
test:
1313
py.test --verbose --capture=no --exitfirst tests

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 = (1, 1, 0)
17+
VERSION = (1, 1, 1)
1818
__version__ = ".".join([str(s) for s in VERSION])
1919

2020
__title__ = "platformio-installer"

pioinstaller/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,11 @@ def check(develop=False, global_=False, auto_upgrade=False, version_spec=None):
166166
"PlatformIO executable not found in `%s`" % penv.get_penv_bin_dir()
167167
)
168168
try:
169-
subprocess.check_output([platformio_exe, "--version"], stderr=subprocess.STDOUT)
169+
subprocess.check_output([platformio_exe, "--help"], stderr=subprocess.STDOUT)
170170
except subprocess.CalledProcessError as e:
171171
error = e.output.decode()
172172
raise exception.InvalidPlatformIOCore(
173-
"Could not run `%s --version`.\nError: %s" % (platformio_exe, str(error))
173+
"Could not run `%s --help`.\nError: %s" % (platformio_exe, str(error))
174174
)
175175

176176
result = {}

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
install_requires=[
3737
# Core
3838
"click==8.0.3",
39-
"requests==2.26.0",
39+
"requests==2.27.1",
4040
"colorama==0.4.4",
4141
"semantic-version==2.8.5",
4242
"certifi==2021.10.8",
4343
# Misc
44-
"wheel==0.37.0",
44+
"wheel==0.37.1",
4545
],
4646
packages=find_packages(),
4747
entry_points={

0 commit comments

Comments
 (0)