Skip to content

Commit

Permalink
Bump version to 6.1.17a1
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Sep 26, 2024
1 parent fe2e8a0 commit b537004
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion platformio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

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

__title__ = "platformio"
Expand Down
10 changes: 3 additions & 7 deletions platformio/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import platform

from platformio.compat import is_proxy_set


Expand Down Expand Up @@ -52,12 +50,10 @@ def get_pip_dependencies():
]

extra = []

# issue #4702; Broken "requests/charset_normalizer" on macOS ARM
if platform.system() == "Darwin" and "arm" in platform.machine().lower():
extra.append(
'chardet >= 3.0.2,<6; platform_system == "Darwin" and "arm" in platform_machine'
)
extra.append(
'chardet >= 3.0.2,<6; platform_system == "Darwin" and "arm" in platform_machine'
)

# issue 4614: urllib3 v2.0 only supports OpenSSL 1.1.1+
try:
Expand Down

0 comments on commit b537004

Please sign in to comment.