enode-host 0.1.3__py3-none-any.whl → 0.1.4__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.
enode_host/cli.py CHANGED
@@ -152,6 +152,10 @@ def _setup_logging() -> None:
152
152
 
153
153
 
154
154
  def _display_available() -> bool:
155
+ # macOS/Windows GUI backends do not rely on X11/Wayland env vars.
156
+ if not sys.platform.startswith("linux"):
157
+ return True
158
+
155
159
  wayland_display = os.environ.get("WAYLAND_DISPLAY")
156
160
  xdg_runtime_dir = os.environ.get("XDG_RUNTIME_DIR")
157
161
  if wayland_display and xdg_runtime_dir:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: enode-host
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Host-side tools that interact with the ESP-IDF firmware.
5
5
  Author: eNode team
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  enode_host/__init__.py,sha256=3u-uEwRU8FkoffjeP5Z06eQSAkLw68KD5n5tpydZaNo,69
2
2
  enode_host/async_socket.py,sha256=Iuys0cqjYBVyH7TY4huQmmNcNBGRFBfd2k4uwTm-9EY,6434
3
- enode_host/cli.py,sha256=uTa-7-YlPxoMgcrd0AiBBmrD07jhg6rADWgfy1Ua-7Q,10618
3
+ enode_host/cli.py,sha256=ifsyQl_5kffrdX1FfPVDXfrTZMoFXwQQ0Mxjnzq__Hc,10754
4
4
  enode_host/config.py,sha256=XVJ7Yco78Yc7pUm3goTxEhBmRH-IFHex2S9UaKVB4Y0,310
5
5
  enode_host/constants.py,sha256=qnG8GvfYs0q0vozFAOhtYpqi9Au2LeszGJrDQbl4cfo,687
6
6
  enode_host/framed_mesh.py,sha256=H37BA7XBSURL3qrJ0slVuLQEol0RQD7j-CyIcDMJCCE,10363
@@ -32,8 +32,8 @@ enode_host/backup/test_wxpython_choice.py,sha256=D4X_F17WTmuOWjeSaoJSkdUaUQN1Smb
32
32
  enode_host/backup/view-wing3.py,sha256=UC-btSlO0jBxXTcXDTJWCSTotDLYvl1I1Sow70SyPss,21280
33
33
  enode_host/backup/wx_example.py,sha256=fYVNWW2UMZntfU43DWhoGRzzBSy_slS7TgpC3ADIAUM,1715
34
34
  enode_host/backup/wx_test01.py,sha256=Hjxk6vH0fR9IiaiBmlvMrQxlAUav_2oM0N-rhuhuFko,1270
35
- enode_host-0.1.3.dist-info/METADATA,sha256=tJPC4dAWFUtSJCPlGyDelczz2AzdfT3zHdybRIUk4DA,2430
36
- enode_host-0.1.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
37
- enode_host-0.1.3.dist-info/entry_points.txt,sha256=kIE7OEbJaaHseFwIL8JGkK13AnIcLPUpHZ8AaAU0aPw,51
38
- enode_host-0.1.3.dist-info/top_level.txt,sha256=CLkZ85gscsAQAI6aophWEVtMQcLpyVI06DB4UoW4Xys,11
39
- enode_host-0.1.3.dist-info/RECORD,,
35
+ enode_host-0.1.4.dist-info/METADATA,sha256=JIcYaIud9PRD4hifSqSiskZ42vSUWuNXskRs3pOZFbY,2430
36
+ enode_host-0.1.4.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
37
+ enode_host-0.1.4.dist-info/entry_points.txt,sha256=kIE7OEbJaaHseFwIL8JGkK13AnIcLPUpHZ8AaAU0aPw,51
38
+ enode_host-0.1.4.dist-info/top_level.txt,sha256=CLkZ85gscsAQAI6aophWEVtMQcLpyVI06DB4UoW4Xys,11
39
+ enode_host-0.1.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.10.2)
2
+ Generator: setuptools (80.10.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5