From 9a3f7d260ce202e5aa12faa3a6d5c93e4759ff8c Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Fri, 26 Dec 2025 15:17:14 -0600 Subject: [PATCH] Update dependencies and Python version requirements in poetry.lock and pyproject.toml --- poetry.lock | 18 ++++++++++++++++-- pyproject.toml | 4 ++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/poetry.lock b/poetry.lock index 70f0987..a2083a7 100644 --- a/poetry.lock +++ b/poetry.lock @@ -164,6 +164,7 @@ files = [ [package.dependencies] cffi = {version = ">=2.0.0", markers = "python_full_version >= \"3.9.0\" and platform_python_implementation != \"PyPy\""} +typing-extensions = {version = ">=4.13.2", markers = "python_full_version < \"3.11.0\""} [package.extras] docs = ["sphinx (>=5.3.0)", "sphinx-inline-tabs", "sphinx-rtd-theme (>=3.0.0)"] @@ -233,7 +234,20 @@ files = [ cryptography = ">=3.4.7" pyserial = ">=3.5" +[[package]] +name = "typing-extensions" +version = "4.15.0" +description = "Backported and Experimental Type Hints for Python 3.9+" +optional = false +python-versions = ">=3.9" +groups = ["main"] +markers = "python_full_version < \"3.11.0\"" +files = [ + {file = "typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548"}, + {file = "typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466"}, +] + [metadata] lock-version = "2.1" -python-versions = ">=3.13" -content-hash = "15934b753c7666b5c299a25fdd1036f3a57f9f7c27410b58b16e2e68c743d7d0" +python-versions = ">=3.9, !=3.9.0, !=3.9.1" +content-hash = "d137d9ed321c511c8f07f8051834c41dca42e5d864e62573d6e6037c42553eee" diff --git a/pyproject.toml b/pyproject.toml index bad3167..e4ab38e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,10 +6,10 @@ authors = [ {name = "Quad4.io"} ] readme = "README.md" -requires-python = ">=3.13" +requires-python = ">=3.9, !=3.9.0, !=3.9.1" dependencies = [ "rns (>=1.0.4,<2.0.0)", - "cryptography (>=46.0.3,<47.0.0)", + "cryptography (>=46.0.0)", "pysocks (>=1.7.1,<2.0.0)" ]