diff options
author | rekby <rekby@ydb.tech> | 2024-08-16 13:53:46 +0300 |
---|---|---|
committer | rekby <rekby@ydb.tech> | 2024-08-16 14:02:56 +0300 |
commit | f23ace9b7c0c2e8578421e3e640e3d1cc0fe381b (patch) | |
tree | b8e99314de0a9340e442e5fa1a5289cf1a6a8704 /contrib/python/deepmerge/ya.make | |
parent | a63920bcb9be4fb351b4e4e85c7cadc6b331ba18 (diff) | |
download | ydb-f23ace9b7c0c2e8578421e3e640e3d1cc0fe381b.tar.gz |
Export python deepmerge library instead of mergedeep to github.com/ydb-platform/ydb for support python2
98bbe613ba94337077da6f6bb9b519768fdef800
Diffstat (limited to 'contrib/python/deepmerge/ya.make')
-rw-r--r-- | contrib/python/deepmerge/ya.make | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/python/deepmerge/ya.make b/contrib/python/deepmerge/ya.make new file mode 100644 index 0000000000..1e596fbb3e --- /dev/null +++ b/contrib/python/deepmerge/ya.make @@ -0,0 +1,22 @@ +PY23_LIBRARY() + +LICENSE(Service-Py23-Proxy) + +VERSION(Service-proxy-version) + +SUBSCRIBER(g:python-contrib) + +IF (PYTHON2) + PEERDIR(contrib/python/deepmerge/py2) +ELSE() + PEERDIR(contrib/python/deepmerge/py3) +ENDIF() + +NO_LINT() + +END() + +RECURSE( + py2 + py3 +) |