changeset 1:f340f7a559de

dep versions
author drewp@bigasterisk.com
date Thu, 27 Jun 2024 14:00:32 -0700
parents 3c86035c0061
children 717d5b5e0d7d
files .hgignore pdm.lock pyproject.toml
diffstat 3 files changed, 14 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Thu Jun 27 13:28:53 2024 -0700
+++ b/.hgignore	Thu Jun 27 14:00:32 2024 -0700
@@ -1,1 +1,3 @@
 .pdm-python
+/.esphome/
+/secrets.yaml
--- a/pdm.lock	Thu Jun 27 13:28:53 2024 -0700
+++ b/pdm.lock	Thu Jun 27 14:00:32 2024 -0700
@@ -5,7 +5,7 @@
 groups = ["default"]
 strategy = ["cross_platform", "inherit_metadata"]
 lock_version = "4.4.1"
-content_hash = "sha256:847b6dcbd41e2347fe1a87b66089ffe1ccb7e14e5d584b1342879ebcde8640b9"
+content_hash = "sha256:2df5e58f28350918f13b3435ed8afbeb240c62f22df6ca144421c5e5f11efb75"
 
 [[package]]
 name = "aioesphomeapi"
--- a/pyproject.toml	Thu Jun 27 13:28:53 2024 -0700
+++ b/pyproject.toml	Thu Jun 27 14:00:32 2024 -0700
@@ -1,21 +1,21 @@
 [project]
-name = ""
-version = ""
+name = "micro"
+version = "0.0.0"
 description = ""
 authors = [
     {name = "Drew Perttula", email = "drewp@bigasterisk.com"},
 ]
 dependencies = [
     "docopt>=0.6.2",
-    "aiohttp>=3.8.1",
-    "aioesphomeapi>=10.11.0",
+    "aiohttp>=3.9.5",
+    "aioesphomeapi>=24.3.0",
     "apriltag>=0.0.16",
     "numpy",
-    "aiohttp-sse>=2.1.0",
+    "aiohttp-sse>=2.2.0",
     "opencv-python",
-    "esphome>=2023.8.2",
-    "pillow>=10.2.0",
-    "setuptools>=69.1.1",
+    "esphome>=2024.6.4",
+    "pillow>=10.3.0",
+    "setuptools>=70.1.1",
 ]
 requires-python = ">=3.11"
 license = {text = "MIT"}
@@ -23,3 +23,6 @@
 [build-system]
 requires = ["pdm-pep517>=1.0.0"]
 build-backend = "pdm.pep517.api"
+
+[tool.pdm.scripts]
+dashboard = {cmd = "esphome dashboard ."}