Bump to Python 3.13

This commit is contained in:
Jakob Lechner 2025-12-08 22:00:00 +01:00
parent 611502e5bb
commit 8c720778ba
4 changed files with 16 additions and 11 deletions

View file

@ -1,7 +1,10 @@
{ poetry2nix }: { poetry2nix, python3 }:
poetry2nix.mkPoetryApplication { poetry2nix.mkPoetryApplication {
pname = "myintercom-audiosocket"; pname = "myintercom-audiosocket";
version = "0.0.1"; version = "0.0.1";
projectDir = ./.; projectDir = ./.;
propagatedBuildInputs = [
python3.pkgs.audioop-lts
];
} }

View file

@ -1,24 +1,24 @@
# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand. # This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand.
[[package]] [[package]]
name = "urllib3" name = "urllib3"
version = "2.5.0" version = "2.6.1"
description = "HTTP library with thread-safe connection pooling, file post, and more." description = "HTTP library with thread-safe connection pooling, file post, and more."
optional = false optional = false
python-versions = ">=3.9" python-versions = ">=3.9"
groups = ["main"] groups = ["main"]
files = [ files = [
{file = "urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc"}, {file = "urllib3-2.6.1-py3-none-any.whl", hash = "sha256:e67d06fe947c36a7ca39f4994b08d73922d40e6cca949907be05efa6fd75110b"},
{file = "urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760"}, {file = "urllib3-2.6.1.tar.gz", hash = "sha256:5379eb6e1aba4088bae84f8242960017ec8d8e3decf30480b3a1abdaa9671a3f"},
] ]
[package.extras] [package.extras]
brotli = ["brotli (>=1.0.9) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\""] brotli = ["brotli (>=1.2.0) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=1.2.0.0) ; platform_python_implementation != \"CPython\""]
h2 = ["h2 (>=4,<5)"] h2 = ["h2 (>=4,<5)"]
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
zstd = ["zstandard (>=0.18.0)"] zstd = ["backports-zstd (>=1.0.0) ; python_version < \"3.14\""]
[metadata] [metadata]
lock-version = "2.1" lock-version = "2.1"
python-versions = "^3.12" python-versions = "^3.13"
content-hash = "a2502d4bca34c8c9ddc7579666a62dc15d3573a0240075cb566922a1d031831e" content-hash = "33f69fba51a1d96af3dfe0957433b3a4c2f5baa5064ada3a95a640d65230416a"

View file

@ -7,7 +7,7 @@ readme = "README.md"
packages = [{include = "myintercom_doorbell"}] packages = [{include = "myintercom_doorbell"}]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.12" python = "^3.13"
urllib3 = "^2.5.0" urllib3 = "^2.5.0"
[tool.poetry.scripts] [tool.poetry.scripts]

View file

@ -4,5 +4,7 @@ mkShell {
buildInputs = [ buildInputs = [
poetry poetry
]; ];
propagatedBuildInputs = [
python3.pkgs.audioop-lts
];
} }