From 1c809b086a2246356e5c6315aa79a5fb691c0ad2 Mon Sep 17 00:00:00 2001 From: hauntsaninja Date: Tue, 24 Mar 2026 14:10:41 -0700 Subject: [PATCH] Drop upper bounds on cryptography and pyopenssl --- pyproject.toml | 6 +++--- setup.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 21d202e6ea..ff9c3b276f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,8 +28,8 @@ classifiers=[ dependencies = [ "certifi", "configparser==4.0.2 ; python_version < '3'", - "cryptography>=3.2.1,<47.0.0", - "pyOpenSSL>=17.5.0,<=25.3.0", + "cryptography>=3.2.1", + "pyOpenSSL>=17.5.0", "python-dateutil>=2.5.3,<3.0.0", "pytz>=2016.10", "circuitbreaker>=1.3.1,<2.0.0; python_version <= '3.6'", @@ -75,4 +75,4 @@ exclude = [ "src/oci/waas/models/waf_log.py", "src/oci/functions/functions_invoke_client.py" ] -max_line_length = 99 \ No newline at end of file +max_line_length = 99 diff --git a/setup.py b/setup.py index 3c2f7da621..3c57f5b1b6 100644 --- a/setup.py +++ b/setup.py @@ -32,8 +32,8 @@ def open_relative(*path): requires = [ "certifi", "configparser==4.0.2 ; python_version < '3'", - "cryptography>=3.2.1,<47.0.0", - "pyOpenSSL>=17.5.0,<=25.3.0", + "cryptography>=3.2.1", + "pyOpenSSL>=17.5.0", "python-dateutil>=2.5.3,<3.0.0", "pytz>=2016.10", "circuitbreaker>=1.3.1,<2.0.0; python_version <= '3.6'",