-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] bump and add seek for thread-based implementation
- Loading branch information
Showing
11 changed files
with
125 additions
and
67 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
env* | ||
.env* |
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
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,13 @@ | ||
linux_wheel: | ||
docker run -it --rm \ | ||
-v `pwd`:/app/src:ro \ | ||
-v `pwd`/dist:/app/dst \ | ||
--entrypoint /bin/bash \ | ||
quay.io/pypa/manylinux1_x86_64 \ | ||
/app/src/scripts/make-wheels.sh | ||
docker run -it --rm \ | ||
-v `pwd`:/app/src:ro \ | ||
-v `pwd`/dist:/app/dst \ | ||
--entrypoint /bin/bash \ | ||
quay.io/pypa/manylinux1_i686 \ | ||
/app/src/scripts/make-wheels.sh |
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
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
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
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,20 @@ | ||
set -ex | ||
|
||
SRC=/app/src | ||
DST=/app/dst | ||
|
||
function build_wheel() { | ||
/opt/python/$1/bin/pip install -Ur ${SRC}/requirements.txt | ||
/opt/python/$1/bin/pip wheel ${SRC} -f ${SRC} -w ${DST} | ||
} | ||
|
||
|
||
build_wheel cp34-cp34m | ||
build_wheel cp35-cp35m | ||
build_wheel cp36-cp36m | ||
|
||
|
||
cd ${DST} | ||
for f in ./*linux_*; do if [ -f $f ]; then auditwheel repair $f -w . ; rm $f; fi; done | ||
cd - | ||
|
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
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
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
Oops, something went wrong.