cloud-files 5.3.0__tar.gz → 5.3.2__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.3.0 → cloud_files-5.3.2}/ChangeLog +6 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/PKG-INFO +1 -1
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloud_files.egg-info/PKG-INFO +1 -1
- cloud_files-5.3.2/cloud_files.egg-info/pbr.json +1 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/cloudfiles.py +4 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles_cli/cloudfiles_cli.py +1 -2
- cloud_files-5.3.0/cloud_files.egg-info/pbr.json +0 -1
- {cloud_files-5.3.0 → cloud_files-5.3.2}/.github/workflows/test-suite.yml +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/AUTHORS +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/LICENSE +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/MANIFEST.in +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/README.md +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/automated_test.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloud_files.egg-info/SOURCES.txt +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloud_files.egg-info/dependency_links.txt +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloud_files.egg-info/entry_points.txt +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloud_files.egg-info/not-zip-safe +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloud_files.egg-info/requires.txt +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloud_files.egg-info/top_level.txt +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/__init__.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/compression.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/connectionpools.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/exceptions.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/gcs.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/interfaces.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/lib.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/paths.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/resumable_tools.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/scheduler.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/secrets.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/test.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/threaded_queue.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles/typing.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles_cli/LICENSE +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/cloudfiles_cli/__init__.py +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/requirements.txt +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/setup.cfg +0 -0
- {cloud_files-5.3.0 → cloud_files-5.3.2}/setup.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"git_version": "9370f96", "is_release": true}
|
|
@@ -149,6 +149,10 @@ def parallel_execute(
|
|
|
149
149
|
if platform.system().lower() == "darwin":
|
|
150
150
|
os.environ["no_proxy"] = "*"
|
|
151
151
|
|
|
152
|
+
# Don't fork, spawn entirely new processes. This
|
|
153
|
+
# avoids accidental deadlocks.
|
|
154
|
+
multiprocessing.set_start_method("spawn", force=True)
|
|
155
|
+
|
|
152
156
|
results = []
|
|
153
157
|
try:
|
|
154
158
|
with pathos.pools.ProcessPool(parallel) as executor:
|
|
@@ -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": "93552c4", "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
|