mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-135455: Fix version and architecture detection in PC/layout script. (GH-135461)
Some checks are pending
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Cross build Linux (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
mypy / Run mypy on Lib/_pyrepl (push) Waiting to run
mypy / Run mypy on Lib/test/libregrtest (push) Waiting to run
mypy / Run mypy on Lib/tomllib (push) Waiting to run
mypy / Run mypy on Tools/build (push) Waiting to run
mypy / Run mypy on Tools/cases_generator (push) Waiting to run
mypy / Run mypy on Tools/clinic (push) Waiting to run
mypy / Run mypy on Tools/jit (push) Waiting to run
mypy / Run mypy on Tools/peg_generator (push) Waiting to run
Some checks are pending
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Cross build Linux (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
mypy / Run mypy on Lib/_pyrepl (push) Waiting to run
mypy / Run mypy on Lib/test/libregrtest (push) Waiting to run
mypy / Run mypy on Lib/tomllib (push) Waiting to run
mypy / Run mypy on Tools/build (push) Waiting to run
mypy / Run mypy on Tools/cases_generator (push) Waiting to run
mypy / Run mypy on Tools/clinic (push) Waiting to run
mypy / Run mypy on Tools/jit (push) Waiting to run
mypy / Run mypy on Tools/peg_generator (push) Waiting to run
This commit is contained in:
parent
f4bc3a9320
commit
afc5ab6cce
3 changed files with 95 additions and 12 deletions
|
@ -6,6 +6,8 @@ __author__ = "Steve Dower <steve.dower@python.org>"
|
|||
__version__ = "3.8"
|
||||
|
||||
import os
|
||||
import pathlib
|
||||
import re
|
||||
import struct
|
||||
import sys
|
||||
|
||||
|
@ -13,9 +15,15 @@ import sys
|
|||
def _unpack_hexversion():
|
||||
try:
|
||||
hexversion = int(os.getenv("PYTHON_HEXVERSION"), 16)
|
||||
return struct.pack(">i", hexversion)
|
||||
except (TypeError, ValueError):
|
||||
hexversion = sys.hexversion
|
||||
return struct.pack(">i", hexversion)
|
||||
pass
|
||||
if os.getenv("PYTHONINCLUDE"):
|
||||
try:
|
||||
return _read_patchlevel_version(pathlib.Path(os.getenv("PYTHONINCLUDE")))
|
||||
except OSError:
|
||||
pass
|
||||
return struct.pack(">i", sys.hexversion)
|
||||
|
||||
|
||||
def _get_suffix(field4):
|
||||
|
@ -26,6 +34,39 @@ def _get_suffix(field4):
|
|||
return ""
|
||||
|
||||
|
||||
def _read_patchlevel_version(sources):
|
||||
if not sources.match("Include"):
|
||||
sources /= "Include"
|
||||
values = {}
|
||||
with open(sources / "patchlevel.h", "r", encoding="utf-8") as f:
|
||||
for line in f:
|
||||
m = re.match(r'#\s*define\s+(PY_\S+?)\s+(\S+)', line.strip(), re.I)
|
||||
if m and m.group(2):
|
||||
v = m.group(2)
|
||||
if v.startswith('"'):
|
||||
v = v[1:-1]
|
||||
else:
|
||||
v = values.get(v, v)
|
||||
if isinstance(v, str):
|
||||
try:
|
||||
v = int(v, 16 if v.startswith("0x") else 10)
|
||||
except ValueError:
|
||||
pass
|
||||
values[m.group(1)] = v
|
||||
return (
|
||||
values["PY_MAJOR_VERSION"],
|
||||
values["PY_MINOR_VERSION"],
|
||||
values["PY_MICRO_VERSION"],
|
||||
values["PY_RELEASE_LEVEL"] << 4 | values["PY_RELEASE_SERIAL"],
|
||||
)
|
||||
|
||||
|
||||
def check_patchlevel_version(sources):
|
||||
got = _read_patchlevel_version(sources)
|
||||
if got != (VER_MAJOR, VER_MINOR, VER_MICRO, VER_FIELD4):
|
||||
return f"{got[0]}.{got[1]}.{got[2]}{_get_suffix(got[3])}"
|
||||
|
||||
|
||||
VER_MAJOR, VER_MINOR, VER_MICRO, VER_FIELD4 = _unpack_hexversion()
|
||||
VER_SUFFIX = _get_suffix(VER_FIELD4)
|
||||
VER_FIELD3 = VER_MICRO << 8 | VER_FIELD4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue