portable-python 1.8.5__tar.gz → 1.8.6__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.
- {portable-python-1.8.5/src/portable_python.egg-info → portable-python-1.8.6}/PKG-INFO +1 -1
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/external/xcpython.py +4 -4
- {portable-python-1.8.5 → portable-python-1.8.6/src/portable_python.egg-info}/PKG-INFO +1 -1
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_failed.py +1 -1
- {portable-python-1.8.5 → portable-python-1.8.6}/DEVELOP.md +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/LICENSE +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/MANIFEST.in +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/README.rst +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/SECURITY.md +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/pyproject.toml +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/requirements.txt +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/setup.cfg +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/setup.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/__init__.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/__main__.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/cli.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/config.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/cpython.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/external/__init__.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/external/_inspect.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/external/tkinter.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/inspector.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/tracking.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python/versions.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python.egg-info/SOURCES.txt +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python.egg-info/dependency_links.txt +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python.egg-info/entry_points.txt +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python.egg-info/requires.txt +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python.egg-info/top_level.txt +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_build.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_cleanup.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_inspector.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_invoker.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_list.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_prefix.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_recompress.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_report.py +0 -0
- {portable-python-1.8.5 → portable-python-1.8.6}/tests/test_setup.py +0 -0
|
@@ -151,7 +151,7 @@ class Openssl(ModuleBuilder):
|
|
|
151
151
|
# TODO: enhance configuration to allow per-version-range settings
|
|
152
152
|
return self.cfg_version("1.1.1w")
|
|
153
153
|
|
|
154
|
-
return self.cfg_version("3.0.
|
|
154
|
+
return self.cfg_version("3.0.13")
|
|
155
155
|
|
|
156
156
|
def c_configure_args(self):
|
|
157
157
|
yield "--openssldir=/etc/ssl"
|
|
@@ -268,7 +268,7 @@ class Sqlite(ModuleBuilder):
|
|
|
268
268
|
|
|
269
269
|
@property
|
|
270
270
|
def version(self):
|
|
271
|
-
return self.cfg_version("3.
|
|
271
|
+
return self.cfg_version("3.45.1")
|
|
272
272
|
|
|
273
273
|
def _do_linux_compile(self):
|
|
274
274
|
self.run_configure(
|
|
@@ -318,11 +318,11 @@ class Xz(ModuleBuilder):
|
|
|
318
318
|
|
|
319
319
|
@property
|
|
320
320
|
def url(self):
|
|
321
|
-
return f"https://
|
|
321
|
+
return f"https://github.com/tukaani-project/xz/releases/download/v{self.version}/xz-{self.version}.tar.gz"
|
|
322
322
|
|
|
323
323
|
@property
|
|
324
324
|
def version(self):
|
|
325
|
-
return self.cfg_version("5.4.
|
|
325
|
+
return self.cfg_version("5.4.6")
|
|
326
326
|
|
|
327
327
|
def _do_linux_compile(self):
|
|
328
328
|
self.run_configure(
|
|
@@ -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.
|
|
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
|
|
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
|
{portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{portable-python-1.8.5 → portable-python-1.8.6}/src/portable_python.egg-info/entry_points.txt
RENAMED
|
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
|