Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
0.9.1
~~~~~~

* Release date: 23 May, 2025.
* Fix issue with unnecessary files to make a smaller source dist.


0.9
~~~~

* Release date: 23 May, 2025.
* Allow user to pass a cython include directory when using ``ExtModule``.
* Fix error with Cython compilation error messages not being shown.
* Fix issue with the root log level being set when building an extension module.
* Use cdivision always as that is usually the intent when using compyle.
* Add a ``COMPYLE_DEBUG`` environment variable to print debug information.
* Explicitly type any float literals for single precision to improve GPU performance.
* Fix bug with the directory where the sources were saved.
* Support for NumPy 2 and Cython 3.x.
* Drop Python 2 support.
* Do late binding so the backend can be changed.
* Fix NumPy deprecation errors.


0.8.1
~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion compyle/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# See PEP 440 for more on suitable version numbers.
__version__ = '0.9.dev'
__version__ = '0.10.dev0'
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def get_version():
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Expand Down Expand Up @@ -63,7 +62,7 @@ def get_version():
author_email='prabhu@aero.iitb.ac.in',
description='Execute a subset of Python on HPC platforms',
long_description=open('README.rst').read(),
license="BSD",
license="BSD-3-Clause",
url='https://github.com/pypr/compyle',
classifiers=classifiers,
packages=find_packages(),
Expand Down
Loading