From e033d82d6847a9b7050c4f91e5aa6de6b5a9669b Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 11 Nov 2019 10:57:06 +0100 Subject: [PATCH] 5.0a93 --- requirements.txt | 1 + to_pypi.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) mode change 100644 => 100755 to_pypi.sh diff --git a/requirements.txt b/requirements.txt index cd3f3a4a..1e7b34fd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ royalnet>=5.0a1 aiohttp>=3.6.2 dice>=2.4.2 sortedcontainers>=2.1.0 +wheel>=0.33.6 diff --git a/to_pypi.sh b/to_pypi.sh old mode 100644 new mode 100755 index 87a9819e..7eeca125 --- a/to_pypi.sh +++ b/to_pypi.sh @@ -1,11 +1,11 @@ #!/bin/bash # Royalnet must be installed with `develop` -VERSION=$(python3.7 -m royalpack.version) +VERSION=$(python3.7 -m rpgpack.version) rm -rf dist python setup.py sdist bdist_wheel -twine upload "dist/{packname}-$VERSION"* +twine upload "dist/rpgpack-$VERSION"* git add * git commit -m "$VERSION" git push