From 0a60d47c7804c731987bc6e2a62dffee19a88ecb Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Fri, 27 Oct 2023 12:40:02 -0700 Subject: [PATCH] disable --- ci/build_python_pypi.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ci/build_python_pypi.sh b/ci/build_python_pypi.sh index 50362fa33..9068a45ad 100755 --- a/ci/build_python_pypi.sh +++ b/ci/build_python_pypi.sh @@ -21,9 +21,9 @@ fi source rapids-env-update # Update pyproject.toml with pre-release build date -if ! rapids-is-release-build; then - sed -i "s/^version = \""${TOML_VERSION}".*\"/version = \""${PACKAGE_VERSION_NUMBER}"\"/g" pyproject.toml -fi +# if ! rapids-is-release-build; then +# sed -i "s/^version = \""${TOML_VERSION}".*\"/version = \""${PACKAGE_VERSION_NUMBER}"\"/g" pyproject.toml +# fi python -m build \ --sdist \ @@ -32,6 +32,6 @@ python -m build \ . # Revert pyproject.toml pre-release build date -if ! rapids-is-release-build; then - sed -i "s/^version = \""${PACKAGE_VERSION_NUMBER}"\"/version = \""${TOML_VERSION}"\"/g" pyproject.toml -fi +# if ! rapids-is-release-build; then +# sed -i "s/^version = \""${PACKAGE_VERSION_NUMBER}"\"/version = \""${TOML_VERSION}"\"/g" pyproject.toml +# fi