Commit 46df1b9
Add universal wheel support (#17)
Wheels are the new standard of python distribution.
For detailed information, see PEP 427.
https://www.python.org/dev/peps/pep-0427/
For high level information, see:
https://pythonwheels.com/
Advantages of wheels
* Faster installation for pure Python packages
* Avoids arbitrary code execution for installation (avoids setup.py)
* Allows better caching for testing and continuous integration
* Creates .pyc files as part of installation to ensure they match the python interpreter used
* More consistent installs across platforms and machines
As this package is pure Pythong (no C files), I have marked the wheel as
universal.
when you'd normally run "python setup.py sdist upload", run instead
"python setup.py sdist bdist_wheel upload".1 parent 4f611ac commit 46df1b9
2 files changed
Lines changed: 10 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
268 | 268 | | |
269 | 269 | | |
270 | 270 | | |
271 | | - | |
| 271 | + | |
272 | 272 | | |
273 | 273 | | |
274 | 274 | | |
| |||
390 | 390 | | |
391 | 391 | | |
392 | 392 | | |
393 | | - | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
394 | 396 | | |
395 | 397 | | |
396 | 398 | | |
397 | | - | |
| 399 | + | |
398 | 400 | | |
399 | 401 | | |
400 | 402 | | |
401 | | - | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
0 commit comments