diff options
author | dimaandreev <dimaandreev@yandex-team.com> | 2024-02-22 19:51:30 +0300 |
---|---|---|
committer | dimaandreev <dimaandreev@yandex-team.com> | 2024-02-22 20:03:56 +0300 |
commit | 4416a6af47242170c265e50e5af0c585567a741d (patch) | |
tree | 1bc3db74ce6d49bcea838bf705b473893960cb12 /build/conf/python.conf | |
parent | 6e0396cf4cb68ec7095a9b5f9b0f017742dcf870 (diff) | |
download | ydb-4416a6af47242170c265e50e5af0c585567a741d.tar.gz |
[build] Add support for -DUSE_SYSTEM_PYTHON=3.12 ()
dcae461cba9f97679c7bd5b3e34c42ac0d58bfed
Diffstat (limited to 'build/conf/python.conf')
-rw-r--r-- | build/conf/python.conf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/conf/python.conf b/build/conf/python.conf index 26b1ee8287..79c4eeb5be 100644 --- a/build/conf/python.conf +++ b/build/conf/python.conf @@ -112,6 +112,11 @@ when ($USE_SYSTEM_PYTHON) { PY_VERSION=3.11 PY_FRAMEWORK_VERSION=3.11 } + "3.12" ? { + _SYSTEM_PYTHON312=yes + PY_VERSION=3.12 + PY_FRAMEWORK_VERSION=3.12 + } default ? { FATAL_ERROR_MESSAGE+=invalid USE_SYSTEM_PYTHON value } |