relenv 0.20.2__tar.gz → 0.20.3__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.3}/PKG-INFO +1 -1
- {relenv-0.20.2 → relenv-0.20.3}/relenv/common.py +2 -2
- {relenv-0.20.2 → relenv-0.20.3/relenv.egg-info}/PKG-INFO +1 -1
- {relenv-0.20.2 → relenv-0.20.3}/LICENSE.md +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/MANIFEST.in +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/NOTICE +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/README.md +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/pyproject.toml +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/__init__.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/__main__.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/_scripts/install_vc_build.ps1 +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/build/__init__.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/build/common.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/build/darwin.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/build/linux.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/build/windows.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/buildenv.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/check.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/create.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/fetch.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/manifest.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/pyversions.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/relocate.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/runtime.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv/toolchain.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/SOURCES.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/dependency_links.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/entry_points.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/requires.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/top_level.txt +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/setup.cfg +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/setup.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/tests/__init__.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/tests/conftest.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/tests/test_build.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/tests/test_common.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/tests/test_create.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/tests/test_downloads.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/tests/test_fips_photon.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/tests/test_relocate.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/tests/test_runtime.py +0 -0
- {relenv-0.20.2 → relenv-0.20.3}/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.3
|
|
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.3"
|
|
22
22
|
|
|
23
23
|
MODULE_DIR = pathlib.Path(__file__).resolve().parent
|
|
24
24
|
|
|
@@ -227,6 +227,7 @@ def get_toolchain(arch=None, root=None):
|
|
|
227
227
|
:return: The directory holding the toolchain
|
|
228
228
|
:rtype: ``pathlib.Path``
|
|
229
229
|
"""
|
|
230
|
+
os.makedirs(DATA_DIR, exist_ok=True)
|
|
230
231
|
if sys.platform != "linux":
|
|
231
232
|
return DATA_DIR
|
|
232
233
|
|
|
@@ -243,7 +244,6 @@ def get_toolchain(arch=None, root=None):
|
|
|
243
244
|
pass
|
|
244
245
|
|
|
245
246
|
if ppbt:
|
|
246
|
-
DATA_DIR.mkdir(exist_ok=True)
|
|
247
247
|
TOOLCHAIN_ROOT.mkdir(exist_ok=True)
|
|
248
248
|
ppbt.common.extract_archive(str(TOOLCHAIN_ROOT), str(ppbt.common.ARCHIVE))
|
|
249
249
|
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.3
|
|
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
|
|
File without changes
|