We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7a1178 commit 4c97b24Copy full SHA for 4c97b24
.github/workflows/release.sh
@@ -0,0 +1,15 @@
1
+#!/bin/sh
2
+
3
+set -e
4
5
+# Install dependencies
6
+pip install --upgrade twine
7
8
+# Erase old distribution, if exists
9
+rm -rf dist hpc_launcher.egg-info
10
11
+# Make tarball
12
+python -m build
13
14
+# Upload to PyPI
15
+twine upload dist/*
hpc_launcher/version.py
@@ -1 +1 @@
-__version__ = "1.0.2"
+__version__ = "1.0.3"
0 commit comments