cloud-files 5.2.0__tar.gz → 5.3.1__tar.gz
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.
- {cloud_files-5.2.0 → cloud_files-5.3.1}/ChangeLog +10 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/PKG-INFO +1 -1
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloud_files.egg-info/PKG-INFO +1 -1
- cloud_files-5.3.1/cloud_files.egg-info/pbr.json +1 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/paths.py +4 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles_cli/cloudfiles_cli.py +1 -2
- cloud_files-5.2.0/cloud_files.egg-info/pbr.json +0 -1
- {cloud_files-5.2.0 → cloud_files-5.3.1}/.github/workflows/test-suite.yml +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/AUTHORS +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/LICENSE +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/MANIFEST.in +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/README.md +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/automated_test.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloud_files.egg-info/SOURCES.txt +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloud_files.egg-info/dependency_links.txt +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloud_files.egg-info/entry_points.txt +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloud_files.egg-info/not-zip-safe +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloud_files.egg-info/requires.txt +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloud_files.egg-info/top_level.txt +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/__init__.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/cloudfiles.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/compression.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/connectionpools.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/exceptions.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/gcs.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/interfaces.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/lib.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/resumable_tools.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/scheduler.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/secrets.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/test.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/threaded_queue.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles/typing.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles_cli/LICENSE +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/cloudfiles_cli/__init__.py +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/requirements.txt +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/setup.cfg +0 -0
- {cloud_files-5.2.0 → cloud_files-5.3.1}/setup.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"git_version": "7636038", "is_release": true}
|
|
@@ -171,6 +171,10 @@ for alias, host in OFFICIAL_ALIASES.items():
|
|
|
171
171
|
def normalize(path):
|
|
172
172
|
|
|
173
173
|
path = path.removesuffix(PRECOMPUTED_SUFFIX)
|
|
174
|
+
m = re.search(TAIL_FORMAT_REGEXP, path)
|
|
175
|
+
if m is not None:
|
|
176
|
+
path = re.sub(TAIL_FORMAT_REGEXP, "", path)
|
|
177
|
+
path = f"{m.group('fmt')}://{path}"
|
|
174
178
|
|
|
175
179
|
fmt, proto, endpoint, cloudpath, alias = extract_format_protocol(
|
|
176
180
|
path, allow_defaults=False
|
|
@@ -16,8 +16,7 @@ import sys
|
|
|
16
16
|
# High Sierra and above when we are using
|
|
17
17
|
# a thread before forking. Instead, don't fork,
|
|
18
18
|
# spawn entirely new processes.
|
|
19
|
-
|
|
20
|
-
ctx._force_start_method('spawn')
|
|
19
|
+
mp.set_start_method("spawn", force=True)
|
|
21
20
|
|
|
22
21
|
import click
|
|
23
22
|
import pathos.pools
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"git_version": "bee40ef", "is_release": true}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|