From 6a46bcd17620ed85167400d53bc3371af2a5a333 Mon Sep 17 00:00:00 2001
From: galipremsagar <sagarprem75@gmail.com>
Date: Fri, 27 Oct 2023 13:28:10 -0700
Subject: [PATCH] cleanup

---
 ci/build_python_pypi.sh | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/ci/build_python_pypi.sh b/ci/build_python_pypi.sh
index 3800791c2..b13783d16 100755
--- a/ci/build_python_pypi.sh
+++ b/ci/build_python_pypi.sh
@@ -24,18 +24,9 @@ sed -i "/^__git_commit__/ s/= .*/= \"${commit}\"/g" "${package_name}/_version.py
 # Compute/export RAPIDS_DATE_STRING
 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
 
 python -m build \
   --sdist \
   --wheel \
   --outdir dist/ \
   .
-
-# 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