Skip to content

Commit 4d4ae05

Browse files
committed
Remove un-needed binary dependencies
1 parent 1fd7e6f commit 4d4ae05

2 files changed

Lines changed: 0 additions & 32 deletions

File tree

relenv/python-versions.json

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -213,20 +213,6 @@
213213
"darwin",
214214
"win32"
215215
]
216-
},
217-
"3.0.19": {
218-
"url": "https://github.com/python/cpython-bin-deps/archive/refs/tags/openssl-bin-{version}.tar.gz",
219-
"sha256": "ac4e19205c0c5155274f4d7a4d59c1baff1e3c7114f475849c8bb0e70796fce4",
220-
"platforms": [
221-
"win32"
222-
]
223-
},
224-
"3.5.5": {
225-
"url": "https://github.com/python/cpython-bin-deps/archive/refs/tags/openssl-bin-{version}.tar.gz",
226-
"sha256": "b7ce0b6f82d20187cee93fad393d1cb19582272143a50b600d5c25ec486950d9",
227-
"platforms": [
228-
"win32"
229-
]
230216
}
231217
},
232218
"sqlite": {

relenv/pyversions.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -609,24 +609,6 @@ def update_dependency_versions(
609609
else:
610610
dependencies["openssl"][latest]["platforms"] = platforms
611611

612-
# Check for Windows-specific OpenSSL from cpython-bin-deps
613-
win_openssl_versions = detect_cpython_bin_deps_versions("openssl-bin")
614-
if win_openssl_versions:
615-
latest = win_openssl_versions[0]
616-
print(f"Latest Windows OpenSSL: {latest}")
617-
if latest not in dependencies["openssl"]:
618-
url = f"https://github.com/python/cpython-bin-deps/archive/refs/tags/openssl-bin-{latest}.tar.gz"
619-
print(f"Downloading {url}...")
620-
download_path = download_url(url, cwd)
621-
checksum = sha256_digest(download_path)
622-
print(f"SHA-256: {checksum}")
623-
dependencies["openssl"][latest] = {
624-
"url": "https://github.com/python/cpython-bin-deps/archive/refs/tags/openssl-bin-{version}.tar.gz",
625-
"sha256": checksum,
626-
"platforms": ["win32"],
627-
}
628-
os.remove(download_path)
629-
630612
# Update SQLite
631613
if "sqlite" in deps_to_update:
632614
print("Checking SQLite versions...")

0 commit comments

Comments
 (0)