Skip to content

Commit 08ec2ab

Browse files
committed
Merge branch 'fix/release_missing_dep' into 'master'
Fix/release missing dep See merge request espressif/esp-idf-monitor!86
2 parents 0ea8bc0 + f3218fd commit 08ec2ab

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

.github/workflows/realease_pypi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip build setuptools twine
22+
pip install .
2223
2324
- name: Build and upload esp-idf-monitor ${{ github.event.release.tag_name }}
2425
env:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v1.6.2 (2025-04-09)
2+
3+
### Bug Fixes
4+
5+
- Install dependencies in the release workflow
6+
17
## v1.6.1 (2025-04-08)
28

39
### Bug Fixes

esp_idf_monitor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .base.ansi_color_converter import ANSIColorConverter # noqa: F401
22
from .base.ansi_color_converter import get_ansi_converter # noqa: F401
33

4-
__version__ = '1.6.1'
4+
__version__ = '1.6.2'

esp_idf_monitor/base/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
from .binlog import ArgFormatter # noqa: F401

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ find = {namespaces = false}
7272
version = {attr = "esp_idf_monitor.__version__"}
7373

7474
[tool.commitizen]
75-
version = "1.6.1"
75+
version = "1.6.2"
7676
update_changelog_on_bump = true
7777
tag_format = "v$version"
7878
changelog_merge_prerelease = true

test/host_test/test_monitor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ class TestCStyleConversion(TestBaseClass):
606606
)
607607
def test_c_format(self, c_fmt, arg, pythonic_fmt, output):
608608
"""Test ArgFormatter.c_format with various format strings and arguments"""
609-
from esp_idf_monitor.base import ArgFormatter
609+
from esp_idf_monitor.base.binlog import ArgFormatter
610610
formatter = ArgFormatter()
611611
converted_format = formatter.convert_to_pythonic_format(formatter.c_format_regex.search(c_fmt))
612612
assert converted_format == pythonic_fmt, (

0 commit comments

Comments
 (0)