From d66b8fa9dde469fd5e987c694e6cec91ecb98210 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Fri, 20 Dec 2024 14:45:54 -0700 Subject: [PATCH] fix import-related errors --- .github/workflows/release.yml | 6 +++--- meshtastic/__main__.py | 3 +++ pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4bb2bd6..abeeb79 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,9 +24,9 @@ jobs: python -m pip install --upgrade pip pip3 install poetry - - name: Bump version - run: >- - poetry version patch + #- name: Bump version + # run: >- + # poetry version patch - name: Get version id: get_version diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index 6229e7d..0ffb170 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -29,6 +29,9 @@ except ImportError as e: have_test = False import meshtastic.util +import meshtastic.serial_interface +import meshtastic.tcp_interface + from meshtastic import BROADCAST_ADDR, mt_config, remote_hardware from meshtastic.ble_interface import BLEInterface from meshtastic.mesh_interface import MeshInterface diff --git a/pyproject.toml b/pyproject.toml index 0976bf3..280cc7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "meshtastic" -version = "2.5.6" +version = "2.5.6post1" description = "Python API & client shell for talking to Meshtastic devices" authors = ["Meshtastic Developers "] license = "GPL-3.0-only"