diff options
author | shadchin <shadchin@yandex-team.com> | 2023-10-10 12:22:15 +0300 |
---|---|---|
committer | shadchin <shadchin@yandex-team.com> | 2023-10-10 12:42:36 +0300 |
commit | 0b9dc2e3d83dc4a141800aff0dc3a4a83e30e308 (patch) | |
tree | 49f9230443fd813874dbb1689d8fdd1599574453 /contrib/python/pathlib2/ya.make | |
parent | 79d1b401b8e5ad6d481f5e90da4d63a81abaaa45 (diff) | |
download | ydb-0b9dc2e3d83dc4a141800aff0dc3a4a83e30e308.tar.gz |
Split pathlib2 on py2/py3
Diffstat (limited to 'contrib/python/pathlib2/ya.make')
-rw-r--r-- | contrib/python/pathlib2/ya.make | 31 |
1 files changed, 8 insertions, 23 deletions
diff --git a/contrib/python/pathlib2/ya.make b/contrib/python/pathlib2/ya.make index 323d60c372..4b633231b1 100644 --- a/contrib/python/pathlib2/ya.make +++ b/contrib/python/pathlib2/ya.make @@ -1,33 +1,18 @@ -# Generated by devtools/yamaker (pypi). - PY23_LIBRARY() -VERSION(2.3.7.post1) - -LICENSE(MIT) - -PEERDIR( - contrib/python/six -) +LICENSE(Service-Py23-Proxy) IF (PYTHON2) - PEERDIR( - contrib/deprecated/python/scandir - contrib/deprecated/python/typing - ) + PEERDIR(contrib/python/pathlib2/py2) +ELSE() + PEERDIR(contrib/python/pathlib2/py3) ENDIF() NO_LINT() -PY_SRCS( - TOP_LEVEL - pathlib2/__init__.py -) +END() -RESOURCE_FILES( - PREFIX contrib/python/pathlib2/ - .dist-info/METADATA - .dist-info/top_level.txt +RECURSE( + py2 + py3 ) - -END() |