Compare commits

..

1 Commits

Author SHA1 Message Date
Ian McEwen
d66b8fa9dd fix import-related errors 2024-12-20 14:45:54 -07:00
3 changed files with 7 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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 <contact@meshtastic.org>"]
license = "GPL-3.0-only"