Skip to content

Commit 97bb832

Browse files
Fix publish twine version (#98)
1 parent 74ea1de commit 97bb832

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
command: | # install env dependencies
7575
set -e
7676
pip install --upgrade pip
77-
pip install twine
77+
pip install twine==6.0.1
7878
- run:
7979
name: Build and Validate
8080
command: | # create whl, validate with twine

publish.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ if ! python3 setup.py sdist bdist_wheel > /dev/null 2>&1; then echo "ERROR: Pack
6161
if ! pip show twine > /dev/null 2>&1;
6262
then
6363
echo "WARN: 'twine' package is not found, installing...";
64-
pip install twine
64+
pip install twine==6.0.1
6565
fi
6666

6767
# Twine Validation

0 commit comments

Comments
 (0)