From e606787c32f01fc165386cc6e2a176feb983fe8c Mon Sep 17 00:00:00 2001 From: MRXLT Date: Mon, 11 May 2020 11:30:08 +0000 Subject: [PATCH] build whl for different python --- python/CMakeLists.txt | 3 +++ tools/python_tag.py | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 tools/python_tag.py diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index c1590fb1..2810fb61 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -19,6 +19,8 @@ endif() if (CLIENT) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/setup.py.client.in ${CMAKE_CURRENT_BINARY_DIR}/setup.py) +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../tools/python_tag.py + ${CMAKE_CURRENT_BINARY_DIR}/python_tag.py) endif() if (APP) @@ -52,6 +54,7 @@ add_custom_command( OUTPUT ${PADDLE_SERVING_BINARY_DIR}/.timestamp COMMAND cp -r ${CMAKE_CURRENT_SOURCE_DIR}/paddle_serving_client/ ${PADDLE_SERVING_BINARY_DIR}/python/ COMMAND ${CMAKE_COMMAND} -E copy ${SERVING_CLIENT_CORE} ${PADDLE_SERVING_BINARY_DIR}/python/paddle_serving_client/serving_client.so + COMMAND env ${py_env} ${PYTHON_EXECUTABLE} python_tag.py COMMAND env ${py_env} ${PYTHON_EXECUTABLE} setup.py bdist_wheel DEPENDS ${SERVING_CLIENT_CORE} sdk_configure_py_proto ${PY_FILES}) add_custom_target(paddle_python ALL DEPENDS serving_client ${PADDLE_SERVING_BINARY_DIR}/.timestamp) diff --git a/tools/python_tag.py b/tools/python_tag.py new file mode 100644 index 00000000..75947cff --- /dev/null +++ b/tools/python_tag.py @@ -0,0 +1,20 @@ +# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from wheel.pep425tags import get_abbr_impl, get_impl_ver, get_abi_tag +import re +with open("setup.cfg", "w") as f: + line = "[bdist_wheel]\npython-tag={0}{1}\nplat-name=linux_x86_64".format( + get_abbr_impl(), get_impl_ver()) + f.write(line) -- GitLab