Skip to content

Commit d212b81

Browse files
set -xeuo pipefail
1 parent 8db8e9e commit d212b81

File tree

6 files changed

+11
-1
lines changed

6 files changed

+11
-1
lines changed

dev/pypi/create_wheel.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
# Copyright (c) 2019-2024, LUCIT Systems and Development (https://www.lucit.tech)
1919
# All rights reserved.
2020

21+
set -xeuo pipefail
22+
2123
security-check() {
2224
echo -n "Did you change the version in \`CHANGELOG.md\` and used \`dev/set_version.py\`? [yes|NO] "
2325
local SURE

dev/pypi/install_packaging_tools.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@
1818
# Copyright (c) 2019-2024, LUCIT Systems and Development (https://www.lucit.tech)
1919
# All rights reserved.
2020

21+
set -xeuo pipefail
22+
2123
python3 -m pip install --user --upgrade pip setuptools wheel twine tqdm

dev/pypi/remove_files.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
# Copyright (c) 2019-2024, LUCIT Systems and Development (https://www.lucit.tech)
1919
# All rights reserved.
2020

21+
set -xeuo pipefail
22+
2123
rm ./build -r
2224
rm ./dist -r
2325
rm ./unicorn_binance_websocket_api.egg-info -r

dev/pypi/upload_wheel.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@
2121
# create this file:
2222
# ~/.pypirc
2323

24+
set -xeuo pipefail
25+
2426
python3 -m twine upload dist/*

dev/sphinx/create_docs.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
# Copyright (c) 2019-2024, LUCIT Systems and Development (https://www.lucit.tech)
1919
# All rights reserved.
2020

21+
set -xeuo pipefail
22+
2123
rm dev/sphinx/source/changelog.md
2224
rm dev/sphinx/source/code_of_conduct.md
2325
rm dev/sphinx/source/contributing.md

dev/sphinx/install_sphinx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#
1818
# Copyright (c) 2019-2024, LUCIT Systems and Development (https://www.lucit.tech)
1919
# All rights reserved.
20-
20+
set -xeuo pipefail
2121
python3 -m pip install sphinx --upgrade
2222
python3 -m pip install python-docs-theme-lucit --upgrade
2323
python3 -m pip install rich --upgrade

0 commit comments

Comments
 (0)