Skip to content

Commit

Permalink
Fix issue with Makefile building a universal binary
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirsche committed Mar 11, 2019
1 parent 1f3c763 commit 245a36e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build-sdist: clean-build

build-wheel: clean-build
/usr/bin/env python3 -m pip install -U wheel
/usr/bin/env python3 setup.py bdist_wheel --universal
/usr/bin/env python3 setup.py bdist_wheel

build-rpm: clean-build
/usr/bin/env python3 -m pip install -U wheel
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[metadata]
license_files = LICENSE.txt

[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
Expand Down

0 comments on commit 245a36e

Please sign in to comment.