Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
c30e3b5f
Commit
c30e3b5f
authored
Mar 06, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the manylinux build script
Exclude 3.3, account for cython being a develop wheel right now. [skip ci]
parent
1fa92a3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
scripts/releases/make-manylinux
scripts/releases/make-manylinux
+4
-2
No files found.
scripts/releases/make-manylinux
View file @
c30e3b5f
...
...
@@ -10,12 +10,14 @@ if [ -d /gevent -a -d /opt/python ]; then
yum
-y
install
libffi-devel
cd
/gevent
rm
-rf
wheelhouse
for
variant
in
`
ls
-d
/opt/python/cp
{
27,3
}
*
`
;
do
for
variant
in
`
ls
-d
/opt/python/cp
{
27,3
4,35,36
}
*
`
;
do
rm
-rf
dist build
*
.egg-info
make clean
$variant
/bin/pip
install
-U
cython cffi setuptools greenlet wheel
$variant
/bin/pip
install
-U
-r
ci-requirements.txt
GEVENT_NO_LIBUV_BUILD
=
1
PATH
=
$variant
/bin:
$PATH
$variant
/bin/python setup.py bdist_wheel
auditwheel repair dist/
*
.whl
$variant
/bin/pip uninstall
-y
cython
rm
-rf
src/cython
done
rm
-rf
dist build
*
.egg-info
exit
0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment