Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
cython
Commits
9e47391b
Commit
9e47391b
authored
Aug 29, 2017
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release'
parents
b317d037
9d06861d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
2 deletions
+18
-2
CHANGES.rst
CHANGES.rst
+1
-1
Makefile
Makefile
+16
-0
appveyor.yml
appveyor.yml
+1
-1
No files found.
CHANGES.rst
View file @
9e47391b
...
...
@@ -56,7 +56,7 @@ Other changes
* This release no longer supports Python 3.2.
0.26.1 (2017-08-2
8
)
0.26.1 (2017-08-2
9
)
===================
Features added
...
...
Makefile
View file @
9e47391b
PYTHON
?=
python
TESTOPTS
?=
REPO
=
git://github.com/cython/cython.git
VERSION
?=
$(
shell
sed
-ne
's|^__version__\s*=\s*"\([^"]*\)".*|\1|p'
Cython/Shadow.py
)
MANYLINUX_IMAGE_X86_64
=
quay.io/pypa/manylinux1_x86_64
MANYLINUX_IMAGE_686
=
quay.io/pypa/manylinux1_i686
all
:
local
...
...
@@ -41,3 +45,15 @@ test: testclean
s5
:
$(MAKE)
-C
Doc/s5 slides
wheel_manylinux
:
wheel_manylinux64 wheel_manylinux32
wheel_manylinux32 wheel_manylinux64
:
dist/Cython-$(VERSION).tar.gz
echo
"Building wheels for Cython
$VERSION
"
mkdir
-p
wheelhouse
time
docker run
--rm
-t
\
-v
$(
shell
pwd
)
:/io
\
-e
CFLAGS
=
"-O3 -g0 -mtune=generic -pipe -fPIC"
\
-e
LDFLAGS
=
"
$(LDFLAGS)
-fPIC"
\
$(
if
$(
patsubst
%32,,
$@
)
,
$(MANYLINUX_IMAGE_X86_64)
,
$(MANYLINUX_IMAGE_686)
)
\
bash
-c
'for PYBIN in /opt/python/*/bin; do $$PYBIN/python -V; { $$PYBIN/pip wheel -w /io/wheelhouse /io/$< & } ; done; wait'
appveyor.yml
View file @
9e47391b
...
...
@@ -62,7 +62,7 @@ clone_depth: 5
branches
:
only
:
-
master
-
0.25.x
-
release
init
:
-
"
ECHO
Python
%PYTHON_VERSION%
(%PYTHON_ARCH%bit)
from
%PYTHON%"
...
...
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