Skip to content

Commit 6b1c26f

Browse files
authored
Merge pull request #67 from pwaller/add-make-publish-and-wheel
Add 'make publish' which also publishes wheel (0.8.post1)
2 parents ad53944 + c92a3ae commit 6b1c26f

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
all:
2+
@echo 'Run "make publish" to do "python setup.py sdist bdist_wheel upload"'
3+
4+
publish:
5+
python setup.py sdist bdist_wheel upload

pyfiglet/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.8.post0'
1+
__version__ = '0.8.post1'

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

0 commit comments

Comments
 (0)