Force Python 3.10

This commit is contained in:
2024-11-21 15:48:53 +01:00
parent e553adc033
commit 89e4c5e7f0
3 changed files with 7 additions and 7 deletions

View File

@@ -24,9 +24,9 @@
},
"charset-normalizer": {
"is_direct": false,
"sha256": "8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15",
"sha256": "7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3",
"type": "url",
"url": "https://files.pythonhosted.org/packages/16/92/92a76dc2ff3a12e69ba94e7e05168d37d0345fa08c87e1fe24d0c2a42223/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"url": "https://files.pythonhosted.org/packages/f8/01/344ec40cf5d85c1da3c1f57566c59e0c9b56bcc5566c08804a95a6cc8257/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"version": "3.4.0"
},
"click": {
@@ -59,9 +59,9 @@
},
"lxml": {
"is_direct": false,
"sha256": "3879cc6ce938ff4eb4900d901ed63555c778731a96365e53fadb36437a131a99",
"sha256": "b1c8c20847b9f34e98080da785bb2336ea982e7f913eed5809e5a3c872900f32",
"type": "url",
"url": "https://files.pythonhosted.org/packages/0a/6e/94537acfb5b8f18235d13186d247bca478fea5e87d224644e0fe907df976/lxml-5.3.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"url": "https://files.pythonhosted.org/packages/05/9e/87492d03ff604fbf656ed2bf3e2e8d28f5d58ea1f00ff27ac27b06509079/lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"version": "5.3.0"
},
"paho-mqtt": {
@@ -155,5 +155,5 @@
}
}
},
"invalidationHash": "8b77dd84722cef2a9d624d9674be2397c777c8b180b813df1327f67470dd3476"
"invalidationHash": "ffec585af8e2f405564c1aa26829f11dbf9265334a938576ea9f416033be7da5"
}

View File

@@ -14,7 +14,7 @@ in rec {
inherit (pyproject.project) name version;
deps = {nixpkgs, ...}: {
python = nixpkgs.python3;
python = nixpkgs.python310;
inherit (nixpkgs) openssl;
};

View File

@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "hcpy"
version = "0.1.5"
description = "HC to MQTT bridge"
requires-python = ">=3.7"
requires-python = "==3.10"
dependencies = [
"bs4",
"requests",