lamindb_setup 0.81.0__py3-none-any.whl → 0.81.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.
- lamindb_setup/__init__.py +1 -1
- lamindb_setup/core/upath.py +7 -0
- {lamindb_setup-0.81.0.dist-info → lamindb_setup-0.81.1.dist-info}/METADATA +1 -1
- {lamindb_setup-0.81.0.dist-info → lamindb_setup-0.81.1.dist-info}/RECORD +6 -6
- {lamindb_setup-0.81.0.dist-info → lamindb_setup-0.81.1.dist-info}/LICENSE +0 -0
- {lamindb_setup-0.81.0.dist-info → lamindb_setup-0.81.1.dist-info}/WHEEL +0 -0
lamindb_setup/__init__.py
CHANGED
lamindb_setup/core/upath.py
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
|
|
6
6
|
import os
|
|
7
|
+
import warnings
|
|
7
8
|
from collections import defaultdict
|
|
8
9
|
from datetime import datetime, timezone
|
|
9
10
|
from functools import partial
|
|
@@ -708,6 +709,12 @@ Args:
|
|
|
708
709
|
pathlike: A string or Path to a local/cloud file/directory/folder.
|
|
709
710
|
"""
|
|
710
711
|
|
|
712
|
+
# suppress the warning from upath about hf (huggingface) filesystem
|
|
713
|
+
# not being explicitly implemented in upath
|
|
714
|
+
warnings.filterwarnings(
|
|
715
|
+
"ignore", module="upath", message=".*'hf' filesystem not explicitly implemented.*"
|
|
716
|
+
)
|
|
717
|
+
|
|
711
718
|
|
|
712
719
|
def create_path(path: UPath, access_token: str | None = None) -> UPath:
|
|
713
720
|
path = UPath(path)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
lamindb_setup/__init__.py,sha256=
|
|
1
|
+
lamindb_setup/__init__.py,sha256=dFAjI0r6-lM4WoJ3n0uo6iCdKHvnV-20y76RufgIFCQ,1714
|
|
2
2
|
lamindb_setup/_cache.py,sha256=1XnM-V_KprbjpgPY7Bg3FYn53Iz_2_fEgcMOaSdKKbg,1332
|
|
3
3
|
lamindb_setup/_check.py,sha256=28PcG8Kp6OpjSLSi1r2boL2Ryeh6xkaCL87HFbjs6GA,129
|
|
4
4
|
lamindb_setup/_check_setup.py,sha256=6cSfpmVOSgU7YiVHfJpBTGTQ7rrnwunt1pJT_jkgNM8,3196
|
|
@@ -40,8 +40,8 @@ lamindb_setup/core/django.py,sha256=E4U9nUlV2kHd-G5v6iSdFGAAWixlQDxOFwMwOMG9xfw,
|
|
|
40
40
|
lamindb_setup/core/exceptions.py,sha256=4NpLUNUIfXYVTFX2FvLZF8RW34exk2Vn2X3G4YhnTRg,276
|
|
41
41
|
lamindb_setup/core/hashing.py,sha256=26dtak7XgmrWa_D1zuDyxObRQcriMtnc1yEigkKASmM,3142
|
|
42
42
|
lamindb_setup/core/types.py,sha256=zJii2le38BJUmsNVvzDrbzGYr0yaeb-9Rw9IKmsBr3k,523
|
|
43
|
-
lamindb_setup/core/upath.py,sha256=
|
|
44
|
-
lamindb_setup-0.81.
|
|
45
|
-
lamindb_setup-0.81.
|
|
46
|
-
lamindb_setup-0.81.
|
|
47
|
-
lamindb_setup-0.81.
|
|
43
|
+
lamindb_setup/core/upath.py,sha256=4rCC0EOe-UaCexRDReQ5D_zs13Zi626pqn1slYNvISE,28945
|
|
44
|
+
lamindb_setup-0.81.1.dist-info/LICENSE,sha256=UOZ1F5fFDe3XXvG4oNnkL1-Ecun7zpHzRxjp-XsMeAo,11324
|
|
45
|
+
lamindb_setup-0.81.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
46
|
+
lamindb_setup-0.81.1.dist-info/METADATA,sha256=yvD9AXAL_lFbagwrcvhId-DMCbgFHtWxZ8fVxobspDM,1745
|
|
47
|
+
lamindb_setup-0.81.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|