Skip to content

Commit

Permalink
build: switch to dynamically compiling pyx
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Dec 19, 2023
1 parent 97d2462 commit fc251dc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
CHANGES
=======

* build: add pyproject.toml

3.2.2
-----

* fix: add binding for top level functions
* build: update build for py312

3.2.1
-----

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ def __repr__(self):
]

setuptools.setup(
setup_requires=['pbr', 'numpy'],
setup_requires=['pbr', 'cython', 'numpy'],
install_requires=['numpy'],
ext_modules=[
setuptools.Extension(
'compresso',
include_dirs=[ str(NumpyImport()) ],
sources=['compresso.cpp'],
sources=['compresso.pyx'],
extra_compile_args=extra_compile_args,
language='c++'
)
Expand Down

0 comments on commit fc251dc

Please sign in to comment.