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.
Files changed (42) hide show
  1. {relenv-0.20.2/relenv.egg-info → relenv-0.20.3}/PKG-INFO +1 -1
  2. {relenv-0.20.2 → relenv-0.20.3}/relenv/common.py +2 -2
  3. {relenv-0.20.2 → relenv-0.20.3/relenv.egg-info}/PKG-INFO +1 -1
  4. {relenv-0.20.2 → relenv-0.20.3}/LICENSE.md +0 -0
  5. {relenv-0.20.2 → relenv-0.20.3}/MANIFEST.in +0 -0
  6. {relenv-0.20.2 → relenv-0.20.3}/NOTICE +0 -0
  7. {relenv-0.20.2 → relenv-0.20.3}/README.md +0 -0
  8. {relenv-0.20.2 → relenv-0.20.3}/pyproject.toml +0 -0
  9. {relenv-0.20.2 → relenv-0.20.3}/relenv/__init__.py +0 -0
  10. {relenv-0.20.2 → relenv-0.20.3}/relenv/__main__.py +0 -0
  11. {relenv-0.20.2 → relenv-0.20.3}/relenv/_scripts/install_vc_build.ps1 +0 -0
  12. {relenv-0.20.2 → relenv-0.20.3}/relenv/build/__init__.py +0 -0
  13. {relenv-0.20.2 → relenv-0.20.3}/relenv/build/common.py +0 -0
  14. {relenv-0.20.2 → relenv-0.20.3}/relenv/build/darwin.py +0 -0
  15. {relenv-0.20.2 → relenv-0.20.3}/relenv/build/linux.py +0 -0
  16. {relenv-0.20.2 → relenv-0.20.3}/relenv/build/windows.py +0 -0
  17. {relenv-0.20.2 → relenv-0.20.3}/relenv/buildenv.py +0 -0
  18. {relenv-0.20.2 → relenv-0.20.3}/relenv/check.py +0 -0
  19. {relenv-0.20.2 → relenv-0.20.3}/relenv/create.py +0 -0
  20. {relenv-0.20.2 → relenv-0.20.3}/relenv/fetch.py +0 -0
  21. {relenv-0.20.2 → relenv-0.20.3}/relenv/manifest.py +0 -0
  22. {relenv-0.20.2 → relenv-0.20.3}/relenv/pyversions.py +0 -0
  23. {relenv-0.20.2 → relenv-0.20.3}/relenv/relocate.py +0 -0
  24. {relenv-0.20.2 → relenv-0.20.3}/relenv/runtime.py +0 -0
  25. {relenv-0.20.2 → relenv-0.20.3}/relenv/toolchain.py +0 -0
  26. {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/SOURCES.txt +0 -0
  27. {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/dependency_links.txt +0 -0
  28. {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/entry_points.txt +0 -0
  29. {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/requires.txt +0 -0
  30. {relenv-0.20.2 → relenv-0.20.3}/relenv.egg-info/top_level.txt +0 -0
  31. {relenv-0.20.2 → relenv-0.20.3}/setup.cfg +0 -0
  32. {relenv-0.20.2 → relenv-0.20.3}/setup.py +0 -0
  33. {relenv-0.20.2 → relenv-0.20.3}/tests/__init__.py +0 -0
  34. {relenv-0.20.2 → relenv-0.20.3}/tests/conftest.py +0 -0
  35. {relenv-0.20.2 → relenv-0.20.3}/tests/test_build.py +0 -0
  36. {relenv-0.20.2 → relenv-0.20.3}/tests/test_common.py +0 -0
  37. {relenv-0.20.2 → relenv-0.20.3}/tests/test_create.py +0 -0
  38. {relenv-0.20.2 → relenv-0.20.3}/tests/test_downloads.py +0 -0
  39. {relenv-0.20.2 → relenv-0.20.3}/tests/test_fips_photon.py +0 -0
  40. {relenv-0.20.2 → relenv-0.20.3}/tests/test_relocate.py +0 -0
  41. {relenv-0.20.2 → relenv-0.20.3}/tests/test_runtime.py +0 -0
  42. {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.2
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.2"
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.2
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