-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes and documentation for building wheels (#56)
* Fix Python 3.5 compatibility * Fix script to build wheels * Add docs for building wheels
- Loading branch information
1 parent
492fc9f
commit 86e4c0b
Showing
3 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ Cargo.lock | |
__pycache__ | ||
/env | ||
*.pyc | ||
dist | ||
|
||
# Editor files | ||
.vscode | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# ERDOS Python Interface | ||
|
||
## Building Wheels | ||
|
||
Use the [manylinux1](https://github.com/pypa/manylinux) docker container | ||
to generate wheels for ERDOS. | ||
|
||
Navigate to the project root and run the following command to build ERDOS | ||
wheels for x86-64: | ||
|
||
```console | ||
docker run -it -v $(pwd):/io quay.io/pypa/manylinux1_x86_64 bash io/python/build-wheels.sh | ||
``` | ||
|
||
The wheels will appear in the `dist` folder in the project root. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters