From a10142350384c642c1b9c1d3be387a8778c89f83 Mon Sep 17 00:00:00 2001 From: Florent Date: Tue, 25 Nov 2025 20:48:16 +0100 Subject: [PATCH] force bleak < 2.0 --- pyproject.toml | 8 ++++++-- src/meshcore_cli/meshcore_cli.py | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 56b1e21..8772479 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "meshcore-cli" -version = "1.3.4" +version = "1.3.6" authors = [ { name="Florent de Lamotte", email="florent@frizoncorrea.fr" }, ] @@ -17,7 +17,11 @@ classifiers = [ ] license = "MIT" license-files = ["LICEN[CS]E*"] -dependencies = [ "meshcore >= 2.2.1", "prompt_toolkit >= 3.0.50", "requests >= 2.28.0", "pycryptodome" ] +dependencies = [ "meshcore >= 2.2.2", + "bleak >= 0.22, <2.0", + "prompt_toolkit >= 3.0.50", + "requests >= 2.28.0", + "pycryptodome" ] [project.urls] Homepage = "https://github.com/fdlamotte/meshcore-cli" diff --git a/src/meshcore_cli/meshcore_cli.py b/src/meshcore_cli/meshcore_cli.py index ba404a0..1a015d6 100644 --- a/src/meshcore_cli/meshcore_cli.py +++ b/src/meshcore_cli/meshcore_cli.py @@ -32,7 +32,7 @@ import re from meshcore import MeshCore, EventType, logger # Version -VERSION = "v1.3.4" +VERSION = "v1.3.6" # default ble address is stored in a config file MCCLI_CONFIG_DIR = str(Path.home()) + "/.config/meshcore/"