Skip to content

Commit

Permalink
Merge pull request #637 from flit/feature/wheel
Browse files Browse the repository at this point in the history
Universal wheel generation
  • Loading branch information
flit authored Apr 28, 2019
2 parents be001f7 + ed719da commit 03a8920
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import sys
import os
from setuptools import setup, find_packages
import zipfile

open_args = { 'mode': 'r' }
if sys.version_info[0] > 2:
Expand Down Expand Up @@ -93,4 +92,9 @@
'pyocd': ['debug/svd/svd_data.zip'],
},
zip_safe=True,
options={
'bdist_wheel': {
'universal': True,
},
},
)

0 comments on commit 03a8920

Please sign in to comment.