Skip to content

Commit 353402b

Browse files
committed
Create wheel file as part of release
1 parent 21d25a6 commit 353402b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ all:
33
.PHONY: dist update
44
dist:
55
rm -f dist/*.whl dist/*.tar.gz
6-
python setup.py sdist
6+
python3 setup.py sdist
7+
python3 setup.py bdist_wheel
78

89
release:
9-
twine upload dist/*.tar.gz
10+
twine upload dist/*.tar.gz
11+
twine upload dist/*.whl

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ classifier =
1313
Programming Language :: Python :: 3.5
1414
Programming Language :: Python :: 3.6
1515
Programming Language :: Python :: 3.7
16-
Topic :: Home Automation :: Software Development :: Libraries :: Python Modules',
16+
Topic :: Home Automation
17+
Topic :: Software Development :: Libraries :: Python Modules
1718

1819
[tool:pytest]
1920
testpaths = tests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def readme():
1111

1212
setup(
1313
name='insteonplm',
14-
version='0.15.3',
14+
version='0.15.4',
1515
author='David McNett',
1616
author_email='nugget@macnugget.org',
1717
url='https://github.com/nugget/python-insteonplm',

0 commit comments

Comments
 (0)