From d59e57a387d0b8e7f3b5fc95adb9c16f930a4b74 Mon Sep 17 00:00:00 2001 From: dm Date: Wed, 11 Dec 2024 18:28:15 +0100 Subject: [PATCH] Relax dependency on cryptography (#91) --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e0d148..3a01b27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Moved `maturin` dependency from main project dependencies to development dependencies since it's only needed for development tasks ([88](https://github.com/trailofbits/rfc3161-client/pull/88)) +- Relax cryptography version requirement ([91](https://github.com/trailofbits/rfc3161-client/pull/91)) + ### Fixed - The project now correctly runs tests with PyPy diff --git a/pyproject.toml b/pyproject.toml index 67b3925..c060015 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ version = "0.1.1" readme = "README.md" license = { file = "LICENSE" } authors = [{ name = "Trail of Bits", email = "opensource@trailofbits.com" }] -dependencies = ["cryptography>=44,<45"] +dependencies = ["cryptography>=43,<45"] [project.optional-dependencies] doc = []