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.
Files changed (42) hide show
  1. {relenv-0.20.2/relenv.egg-info → relenv-0.20.4}/PKG-INFO +1 -1
  2. {relenv-0.20.2 → relenv-0.20.4}/relenv/common.py +2 -3
  3. {relenv-0.20.2 → relenv-0.20.4}/relenv/fetch.py +1 -1
  4. {relenv-0.20.2 → relenv-0.20.4/relenv.egg-info}/PKG-INFO +1 -1
  5. {relenv-0.20.2 → relenv-0.20.4}/LICENSE.md +0 -0
  6. {relenv-0.20.2 → relenv-0.20.4}/MANIFEST.in +0 -0
  7. {relenv-0.20.2 → relenv-0.20.4}/NOTICE +0 -0
  8. {relenv-0.20.2 → relenv-0.20.4}/README.md +0 -0
  9. {relenv-0.20.2 → relenv-0.20.4}/pyproject.toml +0 -0
  10. {relenv-0.20.2 → relenv-0.20.4}/relenv/__init__.py +0 -0
  11. {relenv-0.20.2 → relenv-0.20.4}/relenv/__main__.py +0 -0
  12. {relenv-0.20.2 → relenv-0.20.4}/relenv/_scripts/install_vc_build.ps1 +0 -0
  13. {relenv-0.20.2 → relenv-0.20.4}/relenv/build/__init__.py +0 -0
  14. {relenv-0.20.2 → relenv-0.20.4}/relenv/build/common.py +0 -0
  15. {relenv-0.20.2 → relenv-0.20.4}/relenv/build/darwin.py +0 -0
  16. {relenv-0.20.2 → relenv-0.20.4}/relenv/build/linux.py +0 -0
  17. {relenv-0.20.2 → relenv-0.20.4}/relenv/build/windows.py +0 -0
  18. {relenv-0.20.2 → relenv-0.20.4}/relenv/buildenv.py +0 -0
  19. {relenv-0.20.2 → relenv-0.20.4}/relenv/check.py +0 -0
  20. {relenv-0.20.2 → relenv-0.20.4}/relenv/create.py +0 -0
  21. {relenv-0.20.2 → relenv-0.20.4}/relenv/manifest.py +0 -0
  22. {relenv-0.20.2 → relenv-0.20.4}/relenv/pyversions.py +0 -0
  23. {relenv-0.20.2 → relenv-0.20.4}/relenv/relocate.py +0 -0
  24. {relenv-0.20.2 → relenv-0.20.4}/relenv/runtime.py +0 -0
  25. {relenv-0.20.2 → relenv-0.20.4}/relenv/toolchain.py +0 -0
  26. {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/SOURCES.txt +0 -0
  27. {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/dependency_links.txt +0 -0
  28. {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/entry_points.txt +0 -0
  29. {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/requires.txt +0 -0
  30. {relenv-0.20.2 → relenv-0.20.4}/relenv.egg-info/top_level.txt +0 -0
  31. {relenv-0.20.2 → relenv-0.20.4}/setup.cfg +0 -0
  32. {relenv-0.20.2 → relenv-0.20.4}/setup.py +0 -0
  33. {relenv-0.20.2 → relenv-0.20.4}/tests/__init__.py +0 -0
  34. {relenv-0.20.2 → relenv-0.20.4}/tests/conftest.py +0 -0
  35. {relenv-0.20.2 → relenv-0.20.4}/tests/test_build.py +0 -0
  36. {relenv-0.20.2 → relenv-0.20.4}/tests/test_common.py +0 -0
  37. {relenv-0.20.2 → relenv-0.20.4}/tests/test_create.py +0 -0
  38. {relenv-0.20.2 → relenv-0.20.4}/tests/test_downloads.py +0 -0
  39. {relenv-0.20.2 → relenv-0.20.4}/tests/test_fips_photon.py +0 -0
  40. {relenv-0.20.2 → relenv-0.20.4}/tests/test_relocate.py +0 -0
  41. {relenv-0.20.2 → relenv-0.20.4}/tests/test_runtime.py +0 -0
  42. {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.2
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.2"
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
@@ -39,7 +39,7 @@ def setup_parser(subparsers):
39
39
  )
40
40
  subparser.add_argument(
41
41
  "--python",
42
- default="3.10.17",
42
+ default="3.10.18",
43
43
  type=str,
44
44
  help="The python version [default: %(default)s]",
45
45
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: relenv
3
- Version: 0.20.2
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