Commit 9192555
committed
Distribute package as a universal wheel
Wheels are the modern standard of Python distribution
Advantages of wheels:
- Faster installation
- Avoids arbitrary code execution for installation by avoiding 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
When you'd normally run `python3 setup.py sdist upload`, run instead
`python3 setup.py sdist bdist_wheel upload`.
For more details, see:
https://pythonwheels.com/1 parent 46603d2 commit 9192555
2 files changed
+6
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
0 commit comments