Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync beta with develop #516

Merged
merged 7 commits into from
Jan 11, 2024
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
4 changes: 3 additions & 1 deletion scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
: "${PIP_USERNAME?Need to set PIP_USERNAME}"
: "${PIP_PASSWORD?Need to set PIP_PASSWORD}"

if [ $TEST = 1 ]; then
set -e

if [ "$TEST" = 1 ]; then
twine upload --repository testpypi dist/*
else
echo "Uploading to pypi"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"pytest==5.4.3",
"pytest-cov==2.8.1",
"Random-Word==1.0.4",
"twine==3.1.1",
"twine==4.0.2",
"when-changed"
],
'hw-wallet': [
Expand Down
1 change: 1 addition & 0 deletions skale/dataclasses/skaled_ports.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ class SkaledPorts(Enum):
WSS_JSON = 7
HTTPS_JSON = 8
INFO_HTTP_JSON = 9
IMA_RPC = 10
Loading