Skip to content

Commit

Permalink
Fix platform for armv6l (#128)
Browse files Browse the repository at this point in the history
* Fix platform for armv6l

* Update setup.py
  • Loading branch information
pvizeli authored Aug 11, 2020
1 parent 623d042 commit 396d897
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion builder/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"amd64": "linux_x86_64",
"i386": "linux_i686",
"aarch64": "linux_aarch64",
"armhf": "linux_armv6l",
"armhf": "linux_armv7l",
"armv7": "linux_armv7l",
}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

VERSION = "1.14.1"
VERSION = "1.14.2"

setup(
name="builder",
Expand Down

0 comments on commit 396d897

Please sign in to comment.