Skip to content

Commit 15755f4

Browse files
authored
Merge pull request #467 from ExaWorks/requirements_in_release
Requirements in release
2 parents 672ebb5 + 8f9411d commit 15755f4

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include requirements.txt

release.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ if [ "$LAST" != "$TARGET_VERSION" ]; then
4848
error "Version $TARGET_VERSION is lower than the latest tagged version ($LAST)."
4949
fi
5050

51+
if which twine >/dev/null; then
52+
echo "Found twine"
53+
else
54+
error "Twine was not found. Please install it and then re-run this script"
55+
fi
56+
5157
echo "This will tag and release psij-python to version $TARGET_VERSION."
5258
echo -n "Type 'yes' if you want to continue: "
5359
read REPLY

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
name='psij-python',
1313
version=VERSION,
1414

15-
description='''This is an implementation of the PSI/J (Portable Submission Interface for Jobs)
16-
specification.''',
15+
description='''This is an implementation of the PSI/J (Portable Submission Interface for Jobs) specification.''',
1716

1817
author='The ExaWorks Team',
1918
author_email='[email protected]',

0 commit comments

Comments
 (0)