File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- VERSION = (6 , 1 , 16 )
15
+ VERSION = (6 , 1 , "17a1" )
16
16
__version__ = "." .join ([str (s ) for s in VERSION ])
17
17
18
18
__title__ = "platformio"
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- import platform
16
-
17
15
from platformio .compat import is_proxy_set
18
16
19
17
@@ -52,12 +50,10 @@ def get_pip_dependencies():
52
50
]
53
51
54
52
extra = []
55
-
56
53
# 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
+ )
61
57
62
58
# issue 4614: urllib3 v2.0 only supports OpenSSL 1.1.1+
63
59
try :
You can’t perform that action at this time.
0 commit comments