portable-python 1.8.5__tar.gz → 1.8.7__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 (38) hide show
  1. {portable-python-1.8.5/src/portable_python.egg-info → portable-python-1.8.7}/PKG-INFO +1 -1
  2. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/external/xcpython.py +6 -8
  3. {portable-python-1.8.5 → portable-python-1.8.7/src/portable_python.egg-info}/PKG-INFO +1 -1
  4. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_failed.py +1 -1
  5. {portable-python-1.8.5 → portable-python-1.8.7}/DEVELOP.md +0 -0
  6. {portable-python-1.8.5 → portable-python-1.8.7}/LICENSE +0 -0
  7. {portable-python-1.8.5 → portable-python-1.8.7}/MANIFEST.in +0 -0
  8. {portable-python-1.8.5 → portable-python-1.8.7}/README.rst +0 -0
  9. {portable-python-1.8.5 → portable-python-1.8.7}/SECURITY.md +0 -0
  10. {portable-python-1.8.5 → portable-python-1.8.7}/pyproject.toml +0 -0
  11. {portable-python-1.8.5 → portable-python-1.8.7}/requirements.txt +0 -0
  12. {portable-python-1.8.5 → portable-python-1.8.7}/setup.cfg +0 -0
  13. {portable-python-1.8.5 → portable-python-1.8.7}/setup.py +0 -0
  14. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/__init__.py +0 -0
  15. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/__main__.py +0 -0
  16. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/cli.py +0 -0
  17. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/config.py +0 -0
  18. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/cpython.py +0 -0
  19. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/external/__init__.py +0 -0
  20. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/external/_inspect.py +0 -0
  21. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/external/tkinter.py +0 -0
  22. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/inspector.py +0 -0
  23. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/tracking.py +0 -0
  24. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python/versions.py +0 -0
  25. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python.egg-info/SOURCES.txt +0 -0
  26. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python.egg-info/dependency_links.txt +0 -0
  27. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python.egg-info/entry_points.txt +0 -0
  28. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python.egg-info/requires.txt +0 -0
  29. {portable-python-1.8.5 → portable-python-1.8.7}/src/portable_python.egg-info/top_level.txt +0 -0
  30. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_build.py +0 -0
  31. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_cleanup.py +0 -0
  32. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_inspector.py +0 -0
  33. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_invoker.py +0 -0
  34. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_list.py +0 -0
  35. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_prefix.py +0 -0
  36. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_recompress.py +0 -0
  37. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_report.py +0 -0
  38. {portable-python-1.8.5 → portable-python-1.8.7}/tests/test_setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: portable-python
3
- Version: 1.8.5
3
+ Version: 1.8.7
4
4
  Summary: Portable python binaries
5
5
  Home-page: https://github.com/codrsquad/portable-python
6
6
  Author: Zoran Simic
@@ -147,11 +147,9 @@ class Openssl(ModuleBuilder):
147
147
 
148
148
  @property
149
149
  def version(self):
150
- if self.setup.python_spec.version < "3.10":
151
- # TODO: enhance configuration to allow per-version-range settings
152
- return self.cfg_version("1.1.1w")
153
-
154
- return self.cfg_version("3.0.12")
150
+ # See https://endoflife.date/openssl
151
+ # This default here picks the most conservative longest supported version
152
+ return self.cfg_version("3.0.13")
155
153
 
156
154
  def c_configure_args(self):
157
155
  yield "--openssldir=/etc/ssl"
@@ -268,7 +266,7 @@ class Sqlite(ModuleBuilder):
268
266
 
269
267
  @property
270
268
  def version(self):
271
- return self.cfg_version("3.44.1")
269
+ return self.cfg_version("3.45.1")
272
270
 
273
271
  def _do_linux_compile(self):
274
272
  self.run_configure(
@@ -318,11 +316,11 @@ class Xz(ModuleBuilder):
318
316
 
319
317
  @property
320
318
  def url(self):
321
- return f"https://tukaani.org/xz/xz-{self.version}.tar.gz"
319
+ return f"https://github.com/tukaani-project/xz/releases/download/v{self.version}/xz-{self.version}.tar.gz"
322
320
 
323
321
  @property
324
322
  def version(self):
325
- return self.cfg_version("5.4.5")
323
+ return self.cfg_version("5.4.6")
326
324
 
327
325
  def _do_linux_compile(self):
328
326
  self.run_configure(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: portable-python
3
- Version: 1.8.5
3
+ Version: 1.8.7
4
4
  Summary: Portable python binaries
5
5
  Home-page: https://github.com/codrsquad/portable-python
6
6
  Author: Zoran Simic
@@ -7,7 +7,7 @@ def test_build_bogus_platform(cli):
7
7
  def test_failed_build(cli):
8
8
  cli.run("-tmacos-arm64", "build", "3.12.0")
9
9
  assert cli.failed
10
- assert "Error while compiling xz:5.4.5: ForbiddenHttpError" in cli.logged
10
+ assert "Error while compiling xz:5.4.6: ForbiddenHttpError" in cli.logged
11
11
  assert "Overall compilation failed:" in cli.logged
12
12
 
13
13
 
File without changes