relenv 0.20.2__tar.gz → 0.20.4__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.
- {relenv-0.20.2/relenv.egg-info → relenv-0.20.4}/PKG-INFO +1 -1
- {relenv-0.20.2 → relenv-0.20.4}/relenv/common.py +2 -3
- {relenv-0.20.2 → relenv-0.20.4}/relenv/fetch.py +1 -1
- {relenv-0.20.2 → relenv-0.20.4/relenv.egg-info}/PKG-INFO +1 -1
- {relenv-0.20.2 → relenv-0.20.4}/LICENSE.md +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/MANIFEST.in +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/NOTICE +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/README.md +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/pyproject.toml +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/__init__.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/__main__.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/_scripts/install_vc_build.ps1 +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/build/__init__.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/build/common.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/build/darwin.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/build/linux.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/build/windows.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/buildenv.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/check.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/create.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/manifest.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/pyversions.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/relocate.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/runtime.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv/toolchain.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/SOURCES.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/dependency_links.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/entry_points.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/requires.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/top_level.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/setup.cfg +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/setup.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/__init__.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/conftest.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/test_build.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/test_common.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/test_create.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/test_downloads.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/test_fips_photon.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/test_relocate.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/test_runtime.py +0 -0
- {relenv-0.20.2 → relenv-0.20.4}/tests/test_verify_build.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: relenv
|
|
3
|
-
Version: 0.20.
|
|
3
|
+
Version: 0.20.4
|
|
4
4
|
Project-URL: Source Code, https://github.com/saltstack/relative-environment-for-python
|
|
5
5
|
Project-URL: Documentation, https://relenv.readthedocs.io/en/latest/
|
|
6
6
|
Project-URL: Changelog, https://relenv.readthedocs.io/en/latest/changelog.html
|
|
@@ -18,7 +18,7 @@ import threading
|
|
|
18
18
|
import time
|
|
19
19
|
|
|
20
20
|
# relenv package version
|
|
21
|
-
__version__ = "0.20.
|
|
21
|
+
__version__ = "0.20.4"
|
|
22
22
|
|
|
23
23
|
MODULE_DIR = pathlib.Path(__file__).resolve().parent
|
|
24
24
|
|
|
@@ -32,7 +32,6 @@ REQUEST_HEADERS = {"User-Agent": f"relenv {__version__}"}
|
|
|
32
32
|
|
|
33
33
|
CHECK_HOSTS = (
|
|
34
34
|
"packages.broadcom.com/artifactory/saltproject-generic",
|
|
35
|
-
"repo.saltproject.io",
|
|
36
35
|
"woz.io",
|
|
37
36
|
)
|
|
38
37
|
|
|
@@ -227,6 +226,7 @@ def get_toolchain(arch=None, root=None):
|
|
|
227
226
|
:return: The directory holding the toolchain
|
|
228
227
|
:rtype: ``pathlib.Path``
|
|
229
228
|
"""
|
|
229
|
+
os.makedirs(DATA_DIR, exist_ok=True)
|
|
230
230
|
if sys.platform != "linux":
|
|
231
231
|
return DATA_DIR
|
|
232
232
|
|
|
@@ -243,7 +243,6 @@ def get_toolchain(arch=None, root=None):
|
|
|
243
243
|
pass
|
|
244
244
|
|
|
245
245
|
if ppbt:
|
|
246
|
-
DATA_DIR.mkdir(exist_ok=True)
|
|
247
246
|
TOOLCHAIN_ROOT.mkdir(exist_ok=True)
|
|
248
247
|
ppbt.common.extract_archive(str(TOOLCHAIN_ROOT), str(ppbt.common.ARCHIVE))
|
|
249
248
|
return TOOLCHAIN_PATH
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: relenv
|
|
3
|
-
Version: 0.20.
|
|
3
|
+
Version: 0.20.4
|
|
4
4
|
Project-URL: Source Code, https://github.com/saltstack/relative-environment-for-python
|
|
5
5
|
Project-URL: Documentation, https://relenv.readthedocs.io/en/latest/
|
|
6
6
|
Project-URL: Changelog, https://relenv.readthedocs.io/en/latest/changelog.html
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|