mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Use the latest PIO Remote dependencies on non-ARM platforms // Issue #3865
This commit is contained in:
@ -212,15 +212,19 @@ def build_contrib_pysite_package(target_dir, with_metadata=True):
|
|||||||
|
|
||||||
|
|
||||||
def get_contrib_pysite_deps():
|
def get_contrib_pysite_deps():
|
||||||
twisted_version = "21.7.0"
|
systype = util.get_systype()
|
||||||
result = [
|
twisted_version = "22.1.0"
|
||||||
# twisted[tls], see setup.py for %twisted_version%
|
if "linux_arm" in systype:
|
||||||
"twisted == %s" % twisted_version,
|
result = [
|
||||||
# pyopenssl depends on it, use RUST-less version
|
# twisted[tls], see setup.py for %twisted_version%
|
||||||
"cryptography >= 3.3, < 35.0.0",
|
"twisted == %s" % twisted_version,
|
||||||
"pyopenssl >= 16.0.0, <= 21.0.0",
|
# pyopenssl depends on it, use RUST-less version
|
||||||
"service_identity >= 18.1.0, <= 21.1.0",
|
"cryptography >= 3.3, < 35.0.0",
|
||||||
]
|
"pyopenssl >= 16.0.0, <= 21.0.0",
|
||||||
if "windows" in util.get_systype():
|
"service_identity >= 18.1.0, <= 21.1.0",
|
||||||
|
]
|
||||||
|
else:
|
||||||
|
result = ["twisted[tls] == %s" % twisted_version]
|
||||||
|
if "windows" in systype:
|
||||||
result.append("pywin32 != 226")
|
result.append("pywin32 != 226")
|
||||||
return result
|
return result
|
||||||
|
Reference in New Issue
Block a user