diff options
author | shadchin <shadchin@yandex-team.com> | 2023-10-13 13:44:31 +0300 |
---|---|---|
committer | shadchin <shadchin@yandex-team.com> | 2023-10-13 15:29:54 +0300 |
commit | 825052956da85d8505821bab38142d5744196f8e (patch) | |
tree | dccc16757e5b451b62ed6b80f3305900e73ab6d4 /contrib/python/certifi/ya.make | |
parent | 2813c106add264e6141e39b371511a7380a171f1 (diff) | |
download | ydb-825052956da85d8505821bab38142d5744196f8e.tar.gz |
Split certifi on py2/py3
Diffstat (limited to 'contrib/python/certifi/ya.make')
-rw-r--r-- | contrib/python/certifi/ya.make | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/contrib/python/certifi/ya.make b/contrib/python/certifi/ya.make index 6b203f0615..0835df974c 100644 --- a/contrib/python/certifi/ya.make +++ b/contrib/python/certifi/ya.make @@ -2,8 +2,17 @@ PY23_LIBRARY() LICENSE(Service-Py23-Proxy) -PEERDIR( - library/python/certifi -) +IF (PYTHON2) + PEERDIR(contrib/python/certifi/py2) +ELSE() + PEERDIR(contrib/python/certifi/py3) +ENDIF() + +NO_LINT() END() + +RECURSE( + py2 + py3 +) |