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
8c98761f
Commit
8c98761f
authored
May 30, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use entirely clean directories for manylinux builds, like we do for OS X builds.
parent
f5de6014
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
8 deletions
+12
-8
CHANGES.rst
CHANGES.rst
+3
-3
scripts/releases/make-manylinux
scripts/releases/make-manylinux
+8
-4
src/gevent/__init__.py
src/gevent/__init__.py
+1
-1
No files found.
CHANGES.rst
View file @
8c98761f
...
...
@@ -4,10 +4,10 @@
.. currentmodule:: gevent
1.3.
3
(unreleased)
==================
1.3.
2.post0
(unreleased)
==================
======
-
Nothing changed yet
.
-
Fix a packaging error in manylinux binary wheels
.
1.3.2 (2018-05-29)
...
...
scripts/releases/make-manylinux
View file @
8c98761f
...
...
@@ -10,14 +10,18 @@ if [ -d /gevent -a -d /opt/python ]; then
yum
-y
install
libffi-devel
cd
/gevent
rm
-rf
wheelhouse
mkdir
wheelhouse
for
variant
in
`
ls
-d
/opt/python/cp
{
27,34,35,36
}
*
`
;
do
rm
-rf
dist build
*
.egg-info
make clean
mkdir
/tmp/build
cd
/tmp/build
git clone /gevent gevent
cd
gevent
$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
cp
wheelhouse/
*
.whl /gevent/wheelhouse
cd
/gevent
rm
-rf
/tmp/build
done
rm
-rf
dist build
*
.egg-info
exit
0
...
...
src/gevent/__init__.py
View file @
8c98761f
...
...
@@ -27,7 +27,7 @@ version_info = _version_info(1, 3, 0, 'dev', 0)
#: Use ``pkg_resources.parse_version(__version__)`` or
#: ``packaging.version.Version(__version__)`` to get a machine-usable
#: value.
__version__
=
'1.3.
3.dev
0'
__version__
=
'1.3.
2.post
0'
__all__
=
[
...
...
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