From a324c7b550dc484de90ebcbff4baf70534c20fbe Mon Sep 17 00:00:00 2001 From: Mario Savarese Date: Wed, 5 Aug 2026 17:01:26 +0100 Subject: [PATCH] patch(evervault-python): widen `cryptography` dependency version constraint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit to allow version 50.x. The changelog for the `cryptography` library can be found at https://cryptography.io/en/stable/changelog/#v50-0-0 --- .changeset/pretty-mangos-itch.md | 5 +++++ poetry.lock | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/pretty-mangos-itch.md diff --git a/.changeset/pretty-mangos-itch.md b/.changeset/pretty-mangos-itch.md new file mode 100644 index 0000000..6f75d0d --- /dev/null +++ b/.changeset/pretty-mangos-itch.md @@ -0,0 +1,5 @@ +--- +"evervault-python": patch +--- + +Widen cryptography dependency version constraint to allow 50.x. diff --git a/poetry.lock b/poetry.lock index b60b14d..d5bece2 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1037,4 +1037,4 @@ zstd = ["backports-zstd (>=1.0.0) ; python_version < \"3.14\""] [metadata] lock-version = "2.1" python-versions = "^3.10.0" -content-hash = "7730578aedbd494bf3178942ce49f1540474fd3030d3e87600a6ea1ae314b3f6" +content-hash = "cbb4ae62b751ab3a203a8e12b798859077e71f03545d848e703671f8cf20607e" diff --git a/pyproject.toml b/pyproject.toml index b8f508f..448dc7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ repository = "https://github.com/evervault/evervault-python" [tool.poetry.dependencies] python = "^3.10.0" requests = "^2.32.4" -cryptography = ">=46.0.6,<50" +cryptography = ">=46.0.6,<51" certifi = "*" pycryptodome = "^3.10.1" pyasn1 = "^0.6.4"