mirror of
https://github.com/platformio/platformio-core.git
synced 2025-08-01 02:54:25 +02:00
Bump version to 6.1.17a1
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
VERSION = (6, 1, 16)
|
VERSION = (6, 1, "17a1")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@@ -12,8 +12,6 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import platform
|
|
||||||
|
|
||||||
from platformio.compat import is_proxy_set
|
from platformio.compat import is_proxy_set
|
||||||
|
|
||||||
|
|
||||||
@@ -52,12 +50,10 @@ def get_pip_dependencies():
|
|||||||
]
|
]
|
||||||
|
|
||||||
extra = []
|
extra = []
|
||||||
|
|
||||||
# issue #4702; Broken "requests/charset_normalizer" on macOS ARM
|
# issue #4702; Broken "requests/charset_normalizer" on macOS ARM
|
||||||
if platform.system() == "Darwin" and "arm" in platform.machine().lower():
|
extra.append(
|
||||||
extra.append(
|
'chardet >= 3.0.2,<6; platform_system == "Darwin" and "arm" in platform_machine'
|
||||||
'chardet >= 3.0.2,<6; platform_system == "Darwin" and "arm" in platform_machine'
|
)
|
||||||
)
|
|
||||||
|
|
||||||
# issue 4614: urllib3 v2.0 only supports OpenSSL 1.1.1+
|
# issue 4614: urllib3 v2.0 only supports OpenSSL 1.1.1+
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user