lsst-resources 30.0.0__py3-none-any.whl → 30.0.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.
- lsst/resources/eups.py +2 -2
- lsst/resources/version.py +1 -1
- {lsst_resources-30.0.0.dist-info → lsst_resources-30.0.1.dist-info}/METADATA +2 -1
- {lsst_resources-30.0.0.dist-info → lsst_resources-30.0.1.dist-info}/RECORD +9 -9
- {lsst_resources-30.0.0.dist-info → lsst_resources-30.0.1.dist-info}/WHEEL +1 -1
- {lsst_resources-30.0.0.dist-info → lsst_resources-30.0.1.dist-info}/licenses/COPYRIGHT +0 -0
- {lsst_resources-30.0.0.dist-info → lsst_resources-30.0.1.dist-info}/licenses/LICENSE +0 -0
- {lsst_resources-30.0.0.dist-info → lsst_resources-30.0.1.dist-info}/top_level.txt +0 -0
- {lsst_resources-30.0.0.dist-info → lsst_resources-30.0.1.dist-info}/zip-safe +0 -0
lsst/resources/eups.py
CHANGED
|
@@ -65,7 +65,7 @@ class EupsResourcePath(ProxiedResourcePath):
|
|
|
65
65
|
# Must convert this path into a file URI.
|
|
66
66
|
new_path = posixpath.join(os2posix(eups_path), os2posix(self.path.lstrip("/")))
|
|
67
67
|
parsed = self._uri._replace(path=urllib.parse.quote(new_path), scheme="file", netloc="")
|
|
68
|
-
self._proxy = ResourcePath(parsed)
|
|
68
|
+
self._proxy = ResourcePath(parsed, forceDirectory=self.dirLike, forceAbsolute=True)
|
|
69
69
|
return
|
|
70
70
|
|
|
71
71
|
# If there is no _DIR env var we need to look for python package
|
|
@@ -89,7 +89,7 @@ class EupsResourcePath(ProxiedResourcePath):
|
|
|
89
89
|
if proxy.exists():
|
|
90
90
|
self._proxy = proxy
|
|
91
91
|
if self.path:
|
|
92
|
-
self._proxy = self._proxy.join(self.path.lstrip("/"))
|
|
92
|
+
self._proxy = self._proxy.join(self.path.lstrip("/"), forceDirectory=self.dirLike)
|
|
93
93
|
log.debug(f"Found variant {variant}")
|
|
94
94
|
return
|
|
95
95
|
|
lsst/resources/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "30.0.
|
|
2
|
+
__version__ = "30.0.1"
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lsst-resources
|
|
3
|
-
Version: 30.0.
|
|
3
|
+
Version: 30.0.1
|
|
4
4
|
Summary: An abstraction layer for reading and writing from URI file resources.
|
|
5
5
|
Author-email: Rubin Observatory Data Management <dm-admin@lists.lsst.org>
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
7
7
|
Project-URL: Homepage, https://github.com/lsst/resources
|
|
8
|
+
Project-URL: Source, https://github.com/lsst/resources
|
|
8
9
|
Keywords: lsst
|
|
9
10
|
Classifier: Intended Audience :: Developers
|
|
10
11
|
Classifier: Operating System :: OS Independent
|
|
@@ -3,7 +3,7 @@ lsst/resources/__init__.py,sha256=BDj6uokvd0ZQNGl-Xgz5gZd83Z0L2gFqGSk0KJpylP8,77
|
|
|
3
3
|
lsst/resources/_resourcePath.py,sha256=VLW9YDADwnvK2WOypmWPCstd6iTnvDns1Jtf6UAR03E,74980
|
|
4
4
|
lsst/resources/dav.py,sha256=ZYP7PnQzS7epm5woxnn1_t1XhsPQZm6_q1kv8baUfn4,32100
|
|
5
5
|
lsst/resources/davutils.py,sha256=5geEl_44lrWX-Si1VDfYJ6WP1rg22PBqlyD_v1HE4yI,100300
|
|
6
|
-
lsst/resources/eups.py,sha256=
|
|
6
|
+
lsst/resources/eups.py,sha256=Fsc-i4pfvvzRzK_1VFn40uyYdO6KDl6Iqk6-0wOepQQ,4134
|
|
7
7
|
lsst/resources/file.py,sha256=v2XLOzflfhI6kjUGB1mE8p-1e1B2eE58PW-qsQSCqdA,24360
|
|
8
8
|
lsst/resources/gs.py,sha256=3qMEqO1wIK05BJmuUHtsEunuYWgR4-eB5Z3ffxEtb0o,12827
|
|
9
9
|
lsst/resources/http.py,sha256=WSx2VXKFd6486TytV2NMfdgLntioL6FvliZWpn9LtDE,92426
|
|
@@ -17,17 +17,17 @@ lsst/resources/s3utils.py,sha256=ojWf9BPrK9mhGQ8jvs4_8Nsqf9360e79U5FnPTxe24A,145
|
|
|
17
17
|
lsst/resources/schemeless.py,sha256=Bhcjy-M3k7D-Kmf1ShXYaPqceGb0bOns4Rw9ecXOJjA,11658
|
|
18
18
|
lsst/resources/tests.py,sha256=0tDhVtF1euMH0Y7QR-RbQyo83GPe9baIPI6pM9VyZ-Y,46516
|
|
19
19
|
lsst/resources/utils.py,sha256=6O3Mq7JbPEtqyD2lM77pRpwcPMfV5SxiNMknw-F2vNs,8097
|
|
20
|
-
lsst/resources/version.py,sha256
|
|
20
|
+
lsst/resources/version.py,sha256=2rje6AhRlSZA0YGspwzNRmFUDs6Lw4d0LRgaVZiU0dY,49
|
|
21
21
|
lsst/resources/_resourceHandles/__init__.py,sha256=zOcZ8gVEBdAWcHJaZabA8Vdq-wAVcxjbmA_1b1IWM6M,76
|
|
22
22
|
lsst/resources/_resourceHandles/_baseResourceHandle.py,sha256=lQwxDOmFUNJndTxsjpz-HxrQBL0L-z4aXQocHdOEI7c,4676
|
|
23
23
|
lsst/resources/_resourceHandles/_davResourceHandle.py,sha256=xcJNFUj8VzlPOKlHdXXoFFyiLNiSFiT-RFNqJRzKniQ,6799
|
|
24
24
|
lsst/resources/_resourceHandles/_fileResourceHandle.py,sha256=2nC8tfP_ynAfjpzrtkw_1ahx1CuMEFpZ5mLmofSShUk,3676
|
|
25
25
|
lsst/resources/_resourceHandles/_httpResourceHandle.py,sha256=Yami8IVGeru4bLQCag-OvGG0ltz1qyEg57FY4IEB87Y,10995
|
|
26
26
|
lsst/resources/_resourceHandles/_s3ResourceHandle.py,sha256=Cp-eBtptskbmthy3DwLKPpYPLvU_lrqtK10X37inHt0,12406
|
|
27
|
-
lsst_resources-30.0.
|
|
28
|
-
lsst_resources-30.0.
|
|
29
|
-
lsst_resources-30.0.
|
|
30
|
-
lsst_resources-30.0.
|
|
31
|
-
lsst_resources-30.0.
|
|
32
|
-
lsst_resources-30.0.
|
|
33
|
-
lsst_resources-30.0.
|
|
27
|
+
lsst_resources-30.0.1.dist-info/licenses/COPYRIGHT,sha256=yazVsoMmFwhiw5itGrdT4YPmXbpsQyUFjlpOyZIa77M,148
|
|
28
|
+
lsst_resources-30.0.1.dist-info/licenses/LICENSE,sha256=7wrtgl8meQ0_RIuv2TjIKpAnNrl-ODH-QLwyHe9citI,1516
|
|
29
|
+
lsst_resources-30.0.1.dist-info/METADATA,sha256=8zVHqD-3ICZfdC8udGBPeZp2LuTgs-QYsVCvQv__ocw,2289
|
|
30
|
+
lsst_resources-30.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
31
|
+
lsst_resources-30.0.1.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
|
|
32
|
+
lsst_resources-30.0.1.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
33
|
+
lsst_resources-30.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|