Skip to content

Commit be2c770

Browse files
build: update release.sh to not use setup.py (GoogleCloudPlatform#1236)
In GoogleCloudPlatform#1230 we moved package off of setup.py and over to pyproject.toml Forgot a spot to update in release.sh which references setup.py which no longer exists.
1 parent eade1d7 commit be2c770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.kokoro/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ export PYTHONUNBUFFERED=1
2525
# Move into the package, build the distribution and upload.
2626
TWINE_PASSWORD=$(cat "${KOKORO_KEYSTORE_DIR}/73713_google-cloud-pypi-token-keystore-3")
2727
cd github/cloud-sql-python-connector
28-
python3 setup.py sdist bdist_wheel
28+
python3 -m build --wheel
2929
twine upload --username __token__ --password "${TWINE_PASSWORD}" dist/*

0 commit comments

Comments
 (0)