thds.core 1.32.20250228005722__py3-none-any.whl → 1.32.20250228205603__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.
Potentially problematic release.
This version of thds.core might be problematic. Click here for more details.
- thds/core/hashing.py +2 -2
- thds/core/meta.py +2 -12
- {thds_core-1.32.20250228005722.dist-info → thds_core-1.32.20250228205603.dist-info}/METADATA +1 -1
- {thds_core-1.32.20250228005722.dist-info → thds_core-1.32.20250228205603.dist-info}/RECORD +7 -7
- {thds_core-1.32.20250228005722.dist-info → thds_core-1.32.20250228205603.dist-info}/WHEEL +0 -0
- {thds_core-1.32.20250228005722.dist-info → thds_core-1.32.20250228205603.dist-info}/entry_points.txt +0 -0
- {thds_core-1.32.20250228005722.dist-info → thds_core-1.32.20250228205603.dist-info}/top_level.txt +0 -0
thds/core/hashing.py
CHANGED
|
@@ -74,7 +74,7 @@ def hash_anything(data: SomehowReadable, hasher: T) -> ty.Optional[T]:
|
|
|
74
74
|
return None
|
|
75
75
|
|
|
76
76
|
|
|
77
|
-
def b64(digest:
|
|
77
|
+
def b64(digest: ty.ByteString) -> str:
|
|
78
78
|
"""The string representation commonly used by Azure utilities.
|
|
79
79
|
|
|
80
80
|
We use it in cases where we want to represent the same hash that
|
|
@@ -88,7 +88,7 @@ def db64(s: str) -> bytes:
|
|
|
88
88
|
return base64.b64decode(s)
|
|
89
89
|
|
|
90
90
|
|
|
91
|
-
def _repr_bytes(bs:
|
|
91
|
+
def _repr_bytes(bs: ty.ByteString) -> str:
|
|
92
92
|
return f"db64('{b64(bs)}')"
|
|
93
93
|
|
|
94
94
|
|
thds/core/meta.py
CHANGED
|
@@ -30,14 +30,11 @@ HIVE_SUB_CHARACTER = "_"
|
|
|
30
30
|
VERSION_EXCLUSION_REGEX = r"[^\d.]+"
|
|
31
31
|
VERSION_SUB_CHARACTER = ""
|
|
32
32
|
|
|
33
|
-
CI_TIMESTAMP = "CI_TIMESTAMP"
|
|
34
|
-
CI_USER = "runner"
|
|
35
33
|
DEPLOYING = "DEPLOYING"
|
|
36
34
|
GIT_COMMIT = "GIT_COMMIT"
|
|
37
35
|
GIT_IS_CLEAN = "GIT_IS_CLEAN"
|
|
38
36
|
GIT_IS_DIRTY = "GIT_IS_DIRTY"
|
|
39
37
|
GIT_BRANCH = "GIT_BRANCH"
|
|
40
|
-
MAIN = "main"
|
|
41
38
|
THDS_USER = "THDS_USER"
|
|
42
39
|
|
|
43
40
|
META_FILE = "meta.json"
|
|
@@ -145,13 +142,6 @@ def extract_timestamp(version: str, as_datetime: bool = False):
|
|
|
145
142
|
)
|
|
146
143
|
|
|
147
144
|
|
|
148
|
-
def norm_name(pkg: str) -> str:
|
|
149
|
-
"""Apparently poetry creates slightly different dist-info
|
|
150
|
-
directories and METADATA files than p-i-p-e-n-v did.
|
|
151
|
-
"""
|
|
152
|
-
return pkg.replace(".", "_")
|
|
153
|
-
|
|
154
|
-
|
|
155
145
|
def _get_pkg_root_filename(pkg: Package) -> str:
|
|
156
146
|
if not isinstance(pkg, str):
|
|
157
147
|
return pkg.__file__ or ""
|
|
@@ -172,7 +162,7 @@ def get_version(pkg: Package, orig: str = "") -> str:
|
|
|
172
162
|
if version_:
|
|
173
163
|
return version_
|
|
174
164
|
try:
|
|
175
|
-
version_ = version(
|
|
165
|
+
version_ = version(str(pkg))
|
|
176
166
|
except PackageNotFoundError:
|
|
177
167
|
try:
|
|
178
168
|
version_ = version(str(pkg))
|
|
@@ -217,7 +207,7 @@ def get_base_package(pkg: Package) -> str:
|
|
|
217
207
|
str_pkg = str(pkg)
|
|
218
208
|
if str_pkg == "__main__":
|
|
219
209
|
raise NoBasePackageFromMain(NoBasePackageFromMain.__doc__)
|
|
220
|
-
_ = version(
|
|
210
|
+
_ = version(str_pkg)
|
|
221
211
|
except PackageNotFoundError:
|
|
222
212
|
try:
|
|
223
213
|
_ = version(str(pkg))
|
|
@@ -14,7 +14,7 @@ thds/core/fretry.py,sha256=Tui2q6vXV6c7mjTa1czLrXiugHUEwQp-sZdiwXfxvmM,3829
|
|
|
14
14
|
thds/core/generators.py,sha256=rcdFpPj0NMJWSaSZTnBfTeZxTTORNB633Lng-BW1284,1939
|
|
15
15
|
thds/core/git.py,sha256=I6kaEvwcvVxCLYHhTTfnHle-GkmgOR9_fHs03QxgBfI,2792
|
|
16
16
|
thds/core/hash_cache.py,sha256=bkdV8HZOl66zNffnIjRvMQH1A0_xNqowMDLBtRXGFl8,3723
|
|
17
|
-
thds/core/hashing.py,sha256=
|
|
17
|
+
thds/core/hashing.py,sha256=OqaV65vGKpT3l78jm-Uh7xG4DtAczGjk9-Q60OGmhY0,3521
|
|
18
18
|
thds/core/home.py,sha256=tTClL_AarIKeri1aNCpuIC6evD7qr83ESGD173B81hU,470
|
|
19
19
|
thds/core/hostname.py,sha256=canFGr-JaaG7nUfsQlyL0JT-2tnZoT1BvXzyaOMK1vA,208
|
|
20
20
|
thds/core/imports.py,sha256=0LVegY8I8_XKZPcqiIp2OVVzEDtyqYA3JETf9OAKNKs,568
|
|
@@ -24,7 +24,7 @@ thds/core/lazy.py,sha256=e1WvG4LsbEydV0igEr_Vl1cq05zlQNIE8MFYT90yglE,3289
|
|
|
24
24
|
thds/core/link.py,sha256=kmFJIFvEZc16-7S7IGvtTpzwl3VuvFl3yPlE6WJJ03w,5404
|
|
25
25
|
thds/core/logical_root.py,sha256=gWkIYRv9kNQfzbpxJaYiwNXVz1neZ2NvnvProtOn9d8,1399
|
|
26
26
|
thds/core/merge_args.py,sha256=7oj7dtO1-XVkfTM3aBlq3QlZbo8tb6X7E3EVIR-60t8,5781
|
|
27
|
-
thds/core/meta.py,sha256=
|
|
27
|
+
thds/core/meta.py,sha256=5um8Gvl00JFrYdpYfK2qD3pyQEoq-_3T2LXAhFOcTNo,16617
|
|
28
28
|
thds/core/parallel.py,sha256=HXAn9aIYqNE5rnRN5ypxR6CUucdfzE5T5rJ_MUv-pFk,7590
|
|
29
29
|
thds/core/pickle_visit.py,sha256=QNMWIi5buvk2zsvx1-D-FKL7tkrFUFDs387vxgGebgU,833
|
|
30
30
|
thds/core/prof.py,sha256=5ViolfPsAPwUTHuhAe-bon7IArPGXydpGoB5uZmObDk,8264
|
|
@@ -66,8 +66,8 @@ thds/core/sqlite/structured.py,sha256=swCbDoyVT6cE7Kl79Wh_rg5Z1-yrUDJbiVJF4bjset
|
|
|
66
66
|
thds/core/sqlite/types.py,sha256=oUkfoKRYNGDPZRk29s09rc9ha3SCk2SKr_K6WKebBFs,1308
|
|
67
67
|
thds/core/sqlite/upsert.py,sha256=BmKK6fsGVedt43iY-Lp7dnAu8aJ1e9CYlPVEQR2pMj4,5827
|
|
68
68
|
thds/core/sqlite/write.py,sha256=z0219vDkQDCnsV0WLvsj94keItr7H4j7Y_evbcoBrWU,3458
|
|
69
|
-
thds_core-1.32.
|
|
70
|
-
thds_core-1.32.
|
|
71
|
-
thds_core-1.32.
|
|
72
|
-
thds_core-1.32.
|
|
73
|
-
thds_core-1.32.
|
|
69
|
+
thds_core-1.32.20250228205603.dist-info/METADATA,sha256=Gn3lOQ00CaxpUoPWb6ppFQHtJ9V3dk18WCajZO65H30,2275
|
|
70
|
+
thds_core-1.32.20250228205603.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
71
|
+
thds_core-1.32.20250228205603.dist-info/entry_points.txt,sha256=bOCOVhKZv7azF3FvaWX6uxE6yrjK6FcjqhtxXvLiFY8,161
|
|
72
|
+
thds_core-1.32.20250228205603.dist-info/top_level.txt,sha256=LTZaE5SkWJwv9bwOlMbIhiS-JWQEEIcjVYnJrt-CriY,5
|
|
73
|
+
thds_core-1.32.20250228205603.dist-info/RECORD,,
|
|
File without changes
|
{thds_core-1.32.20250228005722.dist-info → thds_core-1.32.20250228205603.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{thds_core-1.32.20250228005722.dist-info → thds_core-1.32.20250228205603.dist-info}/top_level.txt
RENAMED
|
File without changes
|