Update dependencies

This commit is contained in:
Jakob Lechner 2025-07-13 18:06:03 +02:00
parent b11e07cfb1
commit 8e84238718
3 changed files with 13 additions and 18 deletions

View file

@ -4,9 +4,4 @@ poetry2nix.mkPoetryApplication {
pname = "myintercom-audiosocket";
version = "0.0.1";
projectDir = ./.;
overrides = poetry2nix.overrides.withDefaults (_: prev: {
urllib3 = prev.urllib3.override {
preferWheel = true;
};
});
}

View file

@ -1,24 +1,24 @@
# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand.
# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand.
[[package]]
name = "urllib3"
version = "2.0.7"
version = "2.5.0"
description = "HTTP library with thread-safe connection pooling, file post, and more."
category = "main"
optional = false
python-versions = ">=3.7"
python-versions = ">=3.9"
groups = ["main"]
files = [
{file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"},
{file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"},
{file = "urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc"},
{file = "urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760"},
]
[package.extras]
brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"]
secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"]
brotli = ["brotli (>=1.0.9) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\""]
h2 = ["h2 (>=4,<5)"]
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
zstd = ["zstandard (>=0.18.0)"]
[metadata]
lock-version = "2.0"
python-versions = "^3.10"
content-hash = "cb8f26af67979881c24e243af0719b405141855256ced72c73b222b6c03d2bb8"
lock-version = "2.1"
python-versions = "^3.12"
content-hash = "a2502d4bca34c8c9ddc7579666a62dc15d3573a0240075cb566922a1d031831e"

View file

@ -7,8 +7,8 @@ readme = "README.md"
packages = [{include = "myintercom_doorbell"}]
[tool.poetry.dependencies]
python = "^3.10"
urllib3 = "^2.0.7"
python = "^3.12"
urllib3 = "^2.5.0"
[tool.poetry.scripts]
myintercom-doorbell-audiosocket = "myintercom_doorbell.myintercom_audiosocket:main"