From 4440bd788e3aa8240bf1b15115d42d85864b34ea Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Tue, 17 Feb 2026 15:16:51 -0700 Subject: [PATCH 1/2] Remove un-needed binary dependencies --- relenv/python-versions.json | 14 -------------- relenv/pyversions.py | 18 ------------------ 2 files changed, 32 deletions(-) diff --git a/relenv/python-versions.json b/relenv/python-versions.json index 1661fd75..e120d759 100644 --- a/relenv/python-versions.json +++ b/relenv/python-versions.json @@ -213,20 +213,6 @@ "darwin", "win32" ] - }, - "3.0.19": { - "url": "https://github.com/python/cpython-bin-deps/archive/refs/tags/openssl-bin-{version}.tar.gz", - "sha256": "ac4e19205c0c5155274f4d7a4d59c1baff1e3c7114f475849c8bb0e70796fce4", - "platforms": [ - "win32" - ] - }, - "3.5.5": { - "url": "https://github.com/python/cpython-bin-deps/archive/refs/tags/openssl-bin-{version}.tar.gz", - "sha256": "b7ce0b6f82d20187cee93fad393d1cb19582272143a50b600d5c25ec486950d9", - "platforms": [ - "win32" - ] } }, "sqlite": { diff --git a/relenv/pyversions.py b/relenv/pyversions.py index 37748e04..f4b865d0 100644 --- a/relenv/pyversions.py +++ b/relenv/pyversions.py @@ -609,24 +609,6 @@ def update_dependency_versions( else: dependencies["openssl"][latest]["platforms"] = platforms - # Check for Windows-specific OpenSSL from cpython-bin-deps - win_openssl_versions = detect_cpython_bin_deps_versions("openssl-bin") - if win_openssl_versions: - latest = win_openssl_versions[0] - print(f"Latest Windows OpenSSL: {latest}") - if latest not in dependencies["openssl"]: - url = f"https://github.com/python/cpython-bin-deps/archive/refs/tags/openssl-bin-{latest}.tar.gz" - print(f"Downloading {url}...") - download_path = download_url(url, cwd) - checksum = sha256_digest(download_path) - print(f"SHA-256: {checksum}") - dependencies["openssl"][latest] = { - "url": "https://github.com/python/cpython-bin-deps/archive/refs/tags/openssl-bin-{version}.tar.gz", - "sha256": checksum, - "platforms": ["win32"], - } - os.remove(download_path) - # Update SQLite if "sqlite" in deps_to_update: print("Checking SQLite versions...") From bfd46a5d950a997501c303a10b5aeb4e0e62067e Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Tue, 17 Feb 2026 15:47:26 -0700 Subject: [PATCH 2/2] Update deps versions --- relenv/python-versions.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/relenv/python-versions.json b/relenv/python-versions.json index e120d759..2ffa6ad7 100644 --- a/relenv/python-versions.json +++ b/relenv/python-versions.json @@ -282,6 +282,14 @@ "linux", "win32" ] + }, + "1.3.2": { + "url": "https://github.com/madler/zlib/releases/download/v{version}/zlib-{version}.tar.gz", + "sha256": "bb329a0a2cd0274d05519d61c667c062e06990d72e125ee2dfa8de64f0119d16", + "platforms": [ + "linux", + "win32" + ] } }, "ncurses": {