mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 01:57:13 +02:00
Merge tag 'v6.1.16' into develop
Bump version to 6.1.16
This commit is contained in:
@ -18,7 +18,7 @@ Unlock the true potential of embedded software development with
|
|||||||
PlatformIO's collaborative ecosystem, embracing declarative principles,
|
PlatformIO's collaborative ecosystem, embracing declarative principles,
|
||||||
test-driven methodologies, and modern toolchains for unrivaled success.
|
test-driven methodologies, and modern toolchains for unrivaled success.
|
||||||
|
|
||||||
6.1.16 (2024-??-??)
|
6.1.16 (2024-09-26)
|
||||||
~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
* Added support for Python 3.13
|
* Added support for Python 3.13
|
||||||
|
2
docs
2
docs
Submodule docs updated: 54af3660ee...dd3d549bdb
@ -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, "16rc1")
|
VERSION = (6, 1, 16)
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
import platform
|
import platform
|
||||||
|
|
||||||
from platformio.compat import PY36, is_proxy_set
|
from platformio.compat import is_proxy_set
|
||||||
|
|
||||||
|
|
||||||
def get_core_dependencies():
|
def get_core_dependencies():
|
||||||
@ -30,7 +30,8 @@ def get_core_dependencies():
|
|||||||
|
|
||||||
def get_pip_dependencies():
|
def get_pip_dependencies():
|
||||||
core = [
|
core = [
|
||||||
"bottle == %s" % ("0.12.*" if PY36 else "0.13.*"),
|
'bottle == 0.12.*; python_version < "3.7"',
|
||||||
|
'bottle == 0.13.*; python_version >= "3.7"',
|
||||||
"click >=8.0.4, <9",
|
"click >=8.0.4, <9",
|
||||||
"colorama",
|
"colorama",
|
||||||
"marshmallow == 3.*",
|
"marshmallow == 3.*",
|
||||||
@ -45,7 +46,8 @@ def get_pip_dependencies():
|
|||||||
# PIO Home requirements
|
# PIO Home requirements
|
||||||
"ajsonrpc == 1.2.*",
|
"ajsonrpc == 1.2.*",
|
||||||
"starlette >=0.19, <0.40",
|
"starlette >=0.19, <0.40",
|
||||||
"uvicorn %s" % ("== 0.16.0" if PY36 else ">=0.16, <0.31"),
|
'uvicorn == 0.16.0; python_version < "3.7"',
|
||||||
|
'uvicorn >=0.16, <0.31; python_version >= "3.7"',
|
||||||
"wsproto == 1.*",
|
"wsproto == 1.*",
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -53,7 +55,9 @@ def get_pip_dependencies():
|
|||||||
|
|
||||||
# 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():
|
if platform.system() == "Darwin" and "arm" in platform.machine().lower():
|
||||||
extra.append("chardet>=3.0.2,<6")
|
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+
|
# issue 4614: urllib3 v2.0 only supports OpenSSL 1.1.1+
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user