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
Boxiang Sun
cython
Commits
7ac1fc76
Commit
7ac1fc76
authored
Feb 23, 2018
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an integration test for the setuptools based build from #2104.
parent
f1543dde
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
runtests.py
runtests.py
+1
-0
tests/build/setuptools_reimport.srctree
tests/build/setuptools_reimport.srctree
+23
-0
No files found.
runtests.py
View file @
7ac1fc76
...
...
@@ -116,6 +116,7 @@ def get_distutils_distro(_cache=[]):
EXT_DEP_MODULES
=
{
'tag:numpy'
:
'numpy'
,
'tag:pythran'
:
'pythran'
,
'tag:setuptools'
:
'setuptools.sandbox'
,
'tag:asyncio'
:
'asyncio'
,
'tag:pstats'
:
'pstats'
,
'tag:posix'
:
'posix'
,
...
...
tests/build/setuptools_reimport.srctree
0 → 100644
View file @
7ac1fc76
# mode: run
# tag: setuptools
PYTHON setup.py
######## module.pyx ########
cimport cython
######## import_cython.py ########
import Cython.Compiler.Main
######## setup.py ########
from setuptools.sandbox import run_setup
run_setup('import_cython.py', ['egg_info'])
from Cython.Build import cythonize
cythonize('module.pyx')
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