Skip to content

Commit

Permalink
Remove Cython dependency in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Yohan committed Apr 6, 2017
1 parent 4a2dca0 commit eeaffd3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: PyAMF API Documentation
url: http://pyamf.org/

# The list of objects to document.
modules: pyamf, cpyamf
modules: pyamf

# Don't examine in any way the modules whose dotted name match this
# regular expression pattern.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from setuptools import setup, find_packages


version = (0, 8, 3)
version = (0, 8, 5)

name = "Py3AMF"
description = "AMF support for Python"
Expand Down
3 changes: 3 additions & 0 deletions setupinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,13 +264,16 @@ def get_extensions():

extensions = []

# Hide Cython extension
"""
for p in recursive_glob('.', '*.pyx'):
mod_name = os.path.splitext(p)[0].replace(os.path.sep, '.')
e = make_extension(mod_name)
if e:
extensions.append(e)
"""

return extensions

Expand Down

0 comments on commit eeaffd3

Please sign in to comment.