dycw-utilities 0.175.20__py3-none-any.whl → 0.175.22__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dycw-utilities
3
- Version: 0.175.20
3
+ Version: 0.175.22
4
4
  Summary: Miscellaneous Python utilities
5
5
  Author: Derek Wan
6
6
  Author-email: Derek Wan <d.wan@icloud.com>
@@ -1,4 +1,4 @@
1
- utilities/__init__.py,sha256=0iNHFjfunbBFef4oYY7Vp7CHutwqqxx7liLuA-yDLJQ,61
1
+ utilities/__init__.py,sha256=sU42IQNdRzdYqP75DUwM7K3Ehuq6BiyoV70DPstqNi4,61
2
2
  utilities/altair.py,sha256=TLfRFbG9HwG7SLXoJ-v0r-t49ZaGgTQZD82cpjVi4vs,9085
3
3
  utilities/asyncio.py,sha256=aJySVxBY0gqsIYnoNmH7-1r8djKuf4vSsU69VCD08t8,16772
4
4
  utilities/atomicwrites.py,sha256=tPo6r-Rypd9u99u66B9z86YBPpnLrlHtwox_8Z7T34Y,5790
@@ -80,7 +80,7 @@ utilities/sqlalchemy.py,sha256=HQYpd7LFxdTF5WYVWYtCJeEBI71EJm7ytvCGyAH9B-U,37163
80
80
  utilities/sqlalchemy_polars.py,sha256=JCGhB37raSR7fqeWV5dTsciRTMVzIdVT9YSqKT0piT0,13370
81
81
  utilities/statsmodels.py,sha256=koyiBHvpMcSiBfh99wFUfSggLNx7cuAw3rwyfAhoKpQ,3410
82
82
  utilities/string.py,sha256=shmBK87zZwzGyixuNuXCiUbqzfeZ9xlrFwz6JTaRvDk,582
83
- utilities/subprocess.py,sha256=1nM6Fb-aD4xO673bqWt79rReS2gAhUGmxiA00ZPHYcU,45578
83
+ utilities/subprocess.py,sha256=p8bzzSc9m-E-Vz8p3mulKi2Jo60Mp0qoiou0Kjd5ZjI,45823
84
84
  utilities/tempfile.py,sha256=a3_M1QyxGZql_VcGkBOQBeWbbkItjgkfIpVyzU1UAic,3843
85
85
  utilities/testbook.py,sha256=j1KmaVbrX9VrbeMgtPh5gk55myAsn3dyRUn7jGbPbRk,1294
86
86
  utilities/text.py,sha256=7SvwcSR2l_5cOrm1samGnR4C-ZI6qyFLHLzSpO1zeHQ,13958
@@ -97,7 +97,7 @@ utilities/warnings.py,sha256=un1LvHv70PU-LLv8RxPVmugTzDJkkGXRMZTE2-fTQHw,1771
97
97
  utilities/whenever.py,sha256=F4ek0-OBWxHYrZdmoZt76N2RnNyKY5KrEHt7rqO4AQE,60183
98
98
  utilities/zipfile.py,sha256=24lQc9ATcJxHXBPc_tBDiJk48pWyRrlxO2fIsFxU0A8,699
99
99
  utilities/zoneinfo.py,sha256=tdIScrTB2-B-LH0ukb1HUXKooLknOfJNwHk10MuMYvA,3619
100
- dycw_utilities-0.175.20.dist-info/WHEEL,sha256=RRVLqVugUmFOqBedBFAmA4bsgFcROUBiSUKlERi0Hcg,79
101
- dycw_utilities-0.175.20.dist-info/entry_points.txt,sha256=cOGtKeJI0KXLSV7MJ8Dhc2G8jPgDcBDm53MVNJU4ycI,136
102
- dycw_utilities-0.175.20.dist-info/METADATA,sha256=vhmsFDQysT0e5L5jasWdhZPF6zNePjTpq0iLx5LQ_uw,1443
103
- dycw_utilities-0.175.20.dist-info/RECORD,,
100
+ dycw_utilities-0.175.22.dist-info/WHEEL,sha256=RRVLqVugUmFOqBedBFAmA4bsgFcROUBiSUKlERi0Hcg,79
101
+ dycw_utilities-0.175.22.dist-info/entry_points.txt,sha256=cOGtKeJI0KXLSV7MJ8Dhc2G8jPgDcBDm53MVNJU4ycI,136
102
+ dycw_utilities-0.175.22.dist-info/METADATA,sha256=gFB3Hnr93Qj949yWxcBj1ULGuI6tV_4eM1-L5ptCwm8,1443
103
+ dycw_utilities-0.175.22.dist-info/RECORD,,
utilities/__init__.py CHANGED
@@ -1,3 +1,3 @@
1
1
  from __future__ import annotations
2
2
 
3
- __version__ = "0.175.20"
3
+ __version__ = "0.175.22"
utilities/subprocess.py CHANGED
@@ -1415,6 +1415,7 @@ def uv_run(
1415
1415
  module: str,
1416
1416
  /,
1417
1417
  *args: str,
1418
+ env: StrStrMapping | None = None,
1418
1419
  cwd: PathLike | None = None,
1419
1420
  print: bool = False,
1420
1421
  print_stdout: bool = False,
@@ -1430,6 +1431,7 @@ def uv_run(
1430
1431
  module: str,
1431
1432
  /,
1432
1433
  *args: str,
1434
+ env: StrStrMapping | None = None,
1433
1435
  cwd: PathLike | None = None,
1434
1436
  print: bool = False,
1435
1437
  print_stdout: bool = False,
@@ -1445,6 +1447,7 @@ def uv_run(
1445
1447
  module: str,
1446
1448
  /,
1447
1449
  *args: str,
1450
+ env: StrStrMapping | None = None,
1448
1451
  cwd: PathLike | None = None,
1449
1452
  print: bool = False,
1450
1453
  print_stdout: bool = False,
@@ -1460,6 +1463,7 @@ def uv_run(
1460
1463
  module: str,
1461
1464
  /,
1462
1465
  *args: str,
1466
+ env: StrStrMapping | None = None,
1463
1467
  cwd: PathLike | None = None,
1464
1468
  print: bool = False,
1465
1469
  print_stdout: bool = False,
@@ -1475,6 +1479,7 @@ def uv_run(
1475
1479
  module: str,
1476
1480
  /,
1477
1481
  *args: str,
1482
+ env: StrStrMapping | None = None,
1478
1483
  cwd: PathLike | None = None,
1479
1484
  print: bool = False,
1480
1485
  print_stdout: bool = False,
@@ -1490,6 +1495,7 @@ def uv_run(
1490
1495
  /,
1491
1496
  *args: str,
1492
1497
  cwd: PathLike | None = None,
1498
+ env: StrStrMapping | None = None,
1493
1499
  print: bool = False, # noqa: A002
1494
1500
  print_stdout: bool = False,
1495
1501
  print_stderr: bool = False,
@@ -1503,6 +1509,7 @@ def uv_run(
1503
1509
  return run( # pragma: no cover
1504
1510
  *uv_run_cmd(module, *args),
1505
1511
  cwd=cwd,
1512
+ env=env,
1506
1513
  print=print,
1507
1514
  print_stdout=print_stdout,
1508
1515
  print_stderr=print_stderr,