diff --git a/.circleci/config.yml b/.circleci/config.yml index 11c6c1b..c292da1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -74,7 +74,7 @@ jobs: command: | # install env dependencies set -e pip install --upgrade pip - pip install twine + pip install twine==6.0.1 - run: name: Build and Validate command: | # create whl, validate with twine diff --git a/publish.sh b/publish.sh index 6256ebd..9e4b842 100755 --- a/publish.sh +++ b/publish.sh @@ -61,7 +61,7 @@ if ! python3 setup.py sdist bdist_wheel > /dev/null 2>&1; then echo "ERROR: Pack if ! pip show twine > /dev/null 2>&1; then echo "WARN: 'twine' package is not found, installing..."; - pip install twine + pip install twine==6.0.1 fi # Twine Validation