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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
cb55c11b
Commit
cb55c11b
authored
Sep 07, 2016
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docs about build_ext.
parent
e562ca72
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
CHANGES.rst
CHANGES.rst
+3
-1
Cython/Distutils/old_build_ext.py
Cython/Distutils/old_build_ext.py
+4
-4
No files found.
CHANGES.rst
View file @
cb55c11b
...
...
@@ -57,7 +57,9 @@ Other changes
the current jupyter kernel. The language level can be set explicitly with
"%%cython -2" or "%%cython -3".
* Usage of ``Cython.Distutils.build_ext`` is now discouraged.
* The distutils extension ``Cython.Distutils.build_ext`` has now been updated
to use cythonize which properly handles dependencies. The old extension can
still be found in ``Cython.Distutils.old_build_ext`` and is now deprecated.
0.24.1 (2016-07-15)
...
...
Cython/Distutils/old_build_ext.py
View file @
cb55c11b
"""Cython.Distutils.build_ext
"""Cython.Distutils.
old_
build_ext
Implements a version of the Distutils 'build_ext' command, for
building Cython extension modules."""
...
...
@@ -23,8 +23,8 @@ except Exception:
from_setuptools
=
False
if
not
from_setuptools
:
warnings
.
warn
(
"Cython.Distutils.build_ext does not properly handle dependencies "
"and is deprectated.
Use Cython.Build.build_ext instead.
"
)
"Cython.Distutils.
old_
build_ext does not properly handle dependencies "
"and is deprectated."
)
try
:
from
__builtin__
import
basestring
...
...
@@ -68,7 +68,7 @@ class Optimization(object):
optimization
=
Optimization
()
class
build_ext
(
_build_ext
.
build_ext
):
class
old_
build_ext
(
_build_ext
.
build_ext
):
description
=
"build C/C++ and Cython extensions (compile/link to build directory)"
...
...
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