idf-build-apps 2.2.0__py3-none-any.whl → 2.2.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ Tools for building ESP-IDF related apps.
8
8
  # ruff: noqa: E402
9
9
  # avoid circular imports
10
10
 
11
- __version__ = '2.2.0'
11
+ __version__ = '2.2.1'
12
12
 
13
13
  from .session_args import (
14
14
  SessionArgs,
@@ -51,7 +51,7 @@ class SessionArgs:
51
51
 
52
52
  with open(f) as fr:
53
53
  for line in fr:
54
- m = re.compile(r'^([^=]+)=\"?([^\"\n]*)\"?\n*$').match(line)
54
+ m = re.compile(r'^([^=]+)=([^\n]*)\n*$').match(line)
55
55
  if not m:
56
56
  continue
57
57
  d[m.group(1)] = m.group(2)
@@ -60,7 +60,7 @@ class SessionArgs:
60
60
  def _get_override_sdkconfig_items(self, override_sdkconfig_items: t.Tuple[str]) -> t.Dict:
61
61
  d = {}
62
62
  for line in override_sdkconfig_items:
63
- m = re.compile(r'^([^=]+)=\"?([^\"\n]*)\"?\n*$').match(line)
63
+ m = re.compile(r'^([^=]+)=([^\n]*)\n*$').match(line)
64
64
  if m:
65
65
  d[m.group(1)] = m.group(2)
66
66
  return d
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: idf-build-apps
3
- Version: 2.2.0
3
+ Version: 2.2.1
4
4
  Summary: Tools for building ESP-IDF related apps.
5
5
  Author-email: Fu Hanxi <fuhanxi@espressif.com>
6
6
  Requires-Python: >=3.7
@@ -1,4 +1,4 @@
1
- idf_build_apps/__init__.py,sha256=d0d45rT7ekyctHJnNhfmBI_J5DViErHlMpp77ugihD0,650
1
+ idf_build_apps/__init__.py,sha256=p6GpwxTEYyUc2XAP0E7MEG5zAbq9-de2YV-MR1_S-sc,650
2
2
  idf_build_apps/__main__.py,sha256=8E-5xHm2MlRun0L88XJleNh5U50dpE0Q1nK5KqomA7I,182
3
3
  idf_build_apps/app.py,sha256=LyaZ9bi_FEzK9Vkj6r0KP455XSoJ_gsuealE7PG2rEQ,35121
4
4
  idf_build_apps/build_apps_args.py,sha256=r6VCJDdCzE873X8OTputYkCBZPgECaKoNlAejfcamJk,1644
@@ -7,7 +7,7 @@ idf_build_apps/constants.py,sha256=xqclwUpWE5dEByL4kxdg2HaHjbAfkJtxodFfLZuAk8A,2
7
7
  idf_build_apps/finder.py,sha256=qw5moNq7U5mHSsR0CCfGkKE9p4QsWYNcfkxzeQ73HgM,6252
8
8
  idf_build_apps/log.py,sha256=JysogBHoompfW9E9w0U4wZH7tt8dBdfoh-stPXQz1hw,2573
9
9
  idf_build_apps/main.py,sha256=jeQeNUiQoC1g5pS5vPpzfOpHCX7amdOqWpfp4BZjmac,32591
10
- idf_build_apps/session_args.py,sha256=Tj4TiqBCP0sXA3b4kj4Fw7Ha1JqzWcmpNG3HSz01YqI,3001
10
+ idf_build_apps/session_args.py,sha256=2WDTy40IFAc0KQ57HaeBcYj_k10eUXRKkDOWLrFCaHY,2985
11
11
  idf_build_apps/utils.py,sha256=n9PNJEDDsA9hbbM0SNPdTFsO2_E8alNrX7CNYzaFHik,9644
12
12
  idf_build_apps/junit/__init__.py,sha256=IxvdaS6eSXp7kZxRuXqyZyGxuA_A1nOW1jF1HMi8Gns,231
13
13
  idf_build_apps/junit/report.py,sha256=vHE5RcBa7Bj4a1p2lXaTh0m9eJIO_uTGrOnJg8NEi4I,6430
@@ -18,8 +18,8 @@ idf_build_apps/manifest/manifest.py,sha256=P5ZaUd72A_HOVF6iuwap__Bw-w7WI72ugiTUR
18
18
  idf_build_apps/manifest/soc_header.py,sha256=ULLad1TI8mGfdJhB7LJ4T9A_8BugF1TmckgdO7jO7Fg,3956
19
19
  idf_build_apps/yaml/__init__.py,sha256=W-3z5no07RQ6eYKGyOAPA8Z2CLiMPob8DD91I4URjrA,162
20
20
  idf_build_apps/yaml/parser.py,sha256=Y2OyB4g1DCC7C7jrvpIyZV9lgeCB_XvuB75iGmqiTaM,2093
21
- idf_build_apps-2.2.0.dist-info/entry_points.txt,sha256=3pVUirUEsb6jsDRikkQWNUt4hqLK2ci1HvW_Vf8b6uE,59
22
- idf_build_apps-2.2.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
23
- idf_build_apps-2.2.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
24
- idf_build_apps-2.2.0.dist-info/METADATA,sha256=PawEEFmURzKFoxYw3n5rxCHVeL0O8OKk6BR3ateCfDk,4450
25
- idf_build_apps-2.2.0.dist-info/RECORD,,
21
+ idf_build_apps-2.2.1.dist-info/entry_points.txt,sha256=3pVUirUEsb6jsDRikkQWNUt4hqLK2ci1HvW_Vf8b6uE,59
22
+ idf_build_apps-2.2.1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
23
+ idf_build_apps-2.2.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
24
+ idf_build_apps-2.2.1.dist-info/METADATA,sha256=wz146GLU-mtJhMQAZ8W9soUPAG1kTVpLavAVT2cyBf8,4450
25
+ idf_build_apps-2.2.1.dist-info/RECORD,,