Skip to content

Commit b537004

Browse files
committed
Bump version to 6.1.17a1
1 parent fe2e8a0 commit b537004

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

platformio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION = (6, 1, 16)
15+
VERSION = (6, 1, "17a1")
1616
__version__ = ".".join([str(s) for s in VERSION])
1717

1818
__title__ = "platformio"

platformio/dependencies.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import platform
16-
1715
from platformio.compat import is_proxy_set
1816

1917

@@ -52,12 +50,10 @@ def get_pip_dependencies():
5250
]
5351

5452
extra = []
55-
5653
# issue #4702; Broken "requests/charset_normalizer" on macOS ARM
57-
if platform.system() == "Darwin" and "arm" in platform.machine().lower():
58-
extra.append(
59-
'chardet >= 3.0.2,<6; platform_system == "Darwin" and "arm" in platform_machine'
60-
)
54+
extra.append(
55+
'chardet >= 3.0.2,<6; platform_system == "Darwin" and "arm" in platform_machine'
56+
)
6157

6258
# issue 4614: urllib3 v2.0 only supports OpenSSL 1.1.1+
6359
try:

0 commit comments

Comments
 (0)