Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down