omlish 0.0.0.dev132__py3-none-any.whl → 0.0.0.dev134__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.
omlish/__about__.py CHANGED
@@ -1,5 +1,5 @@
1
- __version__ = '0.0.0.dev132'
2
- __revision__ = '42bbc885dbebe7725637c1677372eaf79b3bc88f'
1
+ __version__ = '0.0.0.dev134'
2
+ __revision__ = '2ce79daa2fabaed83f01745229d814bc8aeb7628'
3
3
 
4
4
 
5
5
  #
@@ -51,7 +51,7 @@ class Project(ProjectBase):
51
51
  ],
52
52
 
53
53
  'diag': [
54
- 'asttokens ~= 2.4',
54
+ 'asttokens ~= 3.0',
55
55
  'executing ~= 2.1',
56
56
 
57
57
  'psutil ~= 6.0',
@@ -71,7 +71,7 @@ class Project(ProjectBase):
71
71
  ],
72
72
 
73
73
  'http': [
74
- 'httpx[http2] ~= 0.27',
74
+ 'httpx[http2] ~= 0.28',
75
75
  ],
76
76
 
77
77
  'misc': [
@@ -1278,7 +1278,7 @@ class HackRunner:
1278
1278
  def run(self) -> None:
1279
1279
  # breakpoint()
1280
1280
 
1281
- env = self._env()
1281
+ env = self._env() # type: RunEnv
1282
1282
  self._debug(env.as_json())
1283
1283
 
1284
1284
  if not self._is_enabled:
@@ -1292,6 +1292,10 @@ class HackRunner:
1292
1292
  self._debug('not pycharm hosted')
1293
1293
  return
1294
1294
 
1295
+ if len(env.orig_argv) < 2:
1296
+ self._debug('no enough interpreter arguments')
1297
+ return
1298
+
1295
1299
  exe = self._exe()
1296
1300
  dec = self._decider().decide(exe.target)
1297
1301
  if dec is None:
@@ -1301,7 +1305,6 @@ class HackRunner:
1301
1305
  self._debug(dec.as_json())
1302
1306
  self._apply(dec)
1303
1307
 
1304
-
1305
1308
  ##
1306
1309
 
1307
1310
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omlish
3
- Version: 0.0.0.dev132
3
+ Version: 0.0.0.dev134
4
4
  Summary: omlish
5
5
  Author: wrmsr
6
6
  License: BSD-3-Clause
@@ -21,7 +21,7 @@ Requires-Dist: trio-asyncio~=0.15; extra == "all"
21
21
  Requires-Dist: lz4~=4.3; extra == "all"
22
22
  Requires-Dist: python-snappy~=0.7; extra == "all"
23
23
  Requires-Dist: zstandard~=0.23; extra == "all"
24
- Requires-Dist: asttokens~=2.4; extra == "all"
24
+ Requires-Dist: asttokens~=3.0; extra == "all"
25
25
  Requires-Dist: executing~=2.1; extra == "all"
26
26
  Requires-Dist: psutil~=6.0; extra == "all"
27
27
  Requires-Dist: orjson~=3.10; extra == "all"
@@ -30,7 +30,7 @@ Requires-Dist: json5~=0.9; extra == "all"
30
30
  Requires-Dist: pyyaml~=6.0; extra == "all"
31
31
  Requires-Dist: cbor2~=5.6; extra == "all"
32
32
  Requires-Dist: cloudpickle~=3.1; extra == "all"
33
- Requires-Dist: httpx[http2]~=0.27; extra == "all"
33
+ Requires-Dist: httpx[http2]~=0.28; extra == "all"
34
34
  Requires-Dist: wrapt~=1.14; extra == "all"
35
35
  Requires-Dist: cryptography~=43.0; extra == "all"
36
36
  Requires-Dist: sqlalchemy[asyncio]~=2.0; extra == "all"
@@ -45,7 +45,7 @@ Requires-Dist: duckdb~=1.1; extra == "all"
45
45
  Requires-Dist: pytest~=8.0; extra == "all"
46
46
  Requires-Dist: anyio~=4.6; extra == "all"
47
47
  Requires-Dist: sniffio~=1.3; extra == "all"
48
- Requires-Dist: asttokens~=2.4; extra == "all"
48
+ Requires-Dist: asttokens~=3.0; extra == "all"
49
49
  Requires-Dist: executing~=2.1; extra == "all"
50
50
  Requires-Dist: orjson~=3.10; extra == "all"
51
51
  Requires-Dist: pyyaml~=6.0; extra == "all"
@@ -61,7 +61,7 @@ Requires-Dist: lz4~=4.3; extra == "compress"
61
61
  Requires-Dist: python-snappy~=0.7; extra == "compress"
62
62
  Requires-Dist: zstandard~=0.23; extra == "compress"
63
63
  Provides-Extra: diag
64
- Requires-Dist: asttokens~=2.4; extra == "diag"
64
+ Requires-Dist: asttokens~=3.0; extra == "diag"
65
65
  Requires-Dist: executing~=2.1; extra == "diag"
66
66
  Requires-Dist: psutil~=6.0; extra == "diag"
67
67
  Provides-Extra: formats
@@ -72,7 +72,7 @@ Requires-Dist: pyyaml~=6.0; extra == "formats"
72
72
  Requires-Dist: cbor2~=5.6; extra == "formats"
73
73
  Requires-Dist: cloudpickle~=3.1; extra == "formats"
74
74
  Provides-Extra: http
75
- Requires-Dist: httpx[http2]~=0.27; extra == "http"
75
+ Requires-Dist: httpx[http2]~=0.28; extra == "http"
76
76
  Provides-Extra: misc
77
77
  Requires-Dist: wrapt~=1.14; extra == "misc"
78
78
  Provides-Extra: secrets
@@ -93,7 +93,7 @@ Requires-Dist: pytest~=8.0; extra == "testing"
93
93
  Provides-Extra: plus
94
94
  Requires-Dist: anyio~=4.6; extra == "plus"
95
95
  Requires-Dist: sniffio~=1.3; extra == "plus"
96
- Requires-Dist: asttokens~=2.4; extra == "plus"
96
+ Requires-Dist: asttokens~=3.0; extra == "plus"
97
97
  Requires-Dist: executing~=2.1; extra == "plus"
98
98
  Requires-Dist: orjson~=3.10; extra == "plus"
99
99
  Requires-Dist: pyyaml~=6.0; extra == "plus"
@@ -1,5 +1,5 @@
1
1
  omlish/.manifests.json,sha256=CxGnj-UiRPlZgmgWoovDWrOnqpSEmBy_kqA7cdfSA3w,1431
2
- omlish/__about__.py,sha256=Hh57Z8Q9ObeU2bHvFw6jTo7TCwcIpEOagKGqhUHHeSY,3379
2
+ omlish/__about__.py,sha256=VbiavsAPDxYSejJ3ZdJJNSJAID1MpR3SYmAYcFX-E2U,3379
3
3
  omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
4
4
  omlish/argparse.py,sha256=cqKGAqcxuxv_s62z0gq29L9KAvg_3-_rFvXKjVpRJjo,8126
5
5
  omlish/c3.py,sha256=ubu7lHwss5V4UznbejAI0qXhXahrU01MysuHOZI9C4U,8116
@@ -160,7 +160,7 @@ omlish/diag/pycharm.py,sha256=7-r_F-whXt8v-0dehxAX-MeMFPM3iZXX9IfeL0GfUtk,4643
160
160
  omlish/diag/pydevd.py,sha256=UN55ZjkWLCVyHxE2CNRRYamuvSKfzWsn0D5oczRTXO4,7536
161
161
  omlish/diag/threads.py,sha256=1-x02VCDZ407gfbtXm1pWK-ubqhqfePm9PMqkHCVoqk,3642
162
162
  omlish/diag/_pycharm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
- omlish/diag/_pycharm/runhack.py,sha256=eJlaUXIcFzAjOop_793RwNS_KF9NmhLv0i22xRVVeo0,34951
163
+ omlish/diag/_pycharm/runhack.py,sha256=kuRgiMYYsM0wkHwJfbN2ao79OFxmfjV1vkGaEspLKRA,35080
164
164
  omlish/diag/replserver/__init__.py,sha256=uLo6V2aQ29v9z3IMELlPDSlG3_2iOT4-_X8VniF-EgE,235
165
165
  omlish/diag/replserver/__main__.py,sha256=LmU41lQ58bm1h4Mx7S8zhE_uEBSC6kPcp9mn5JRpulA,32
166
166
  omlish/diag/replserver/console.py,sha256=XzBDVhYlr8FY6ym4OwoaIHuFOHnGK3dTYlMDIOMUUlA,7410
@@ -487,9 +487,9 @@ omlish/text/glyphsplit.py,sha256=Ug-dPRO7x-OrNNr8g1y6DotSZ2KH0S-VcOmUobwa4B0,329
487
487
  omlish/text/indent.py,sha256=6Jj6TFY9unaPa4xPzrnZemJ-fHsV53IamP93XGjSUHs,1274
488
488
  omlish/text/parts.py,sha256=7vPF1aTZdvLVYJ4EwBZVzRSy8XB3YqPd7JwEnNGGAOo,6495
489
489
  omlish/text/random.py,sha256=jNWpqiaKjKyTdMXC-pWAsSC10AAP-cmRRPVhm59ZWLk,194
490
- omlish-0.0.0.dev132.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
491
- omlish-0.0.0.dev132.dist-info/METADATA,sha256=U0vjPiqK-XsyKsfbDGsCfEohWsGbsg4RMcv1rQ8jdL4,4173
492
- omlish-0.0.0.dev132.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
493
- omlish-0.0.0.dev132.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
494
- omlish-0.0.0.dev132.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
495
- omlish-0.0.0.dev132.dist-info/RECORD,,
490
+ omlish-0.0.0.dev134.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
491
+ omlish-0.0.0.dev134.dist-info/METADATA,sha256=L5wBl_EJCZwTtSLR1mK6J0GJ7kpHLt3w5U9UbbIWl3I,4173
492
+ omlish-0.0.0.dev134.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
493
+ omlish-0.0.0.dev134.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
494
+ omlish-0.0.0.dev134.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
495
+ omlish-0.0.0.dev134.dist-info/RECORD,,