Skip to content

Commit 9219a6a

Browse files
Prepare for release 0.9.
1 parent 868990d commit 9219a6a

3 files changed

Lines changed: 19 additions & 3 deletions

File tree

CHANGES.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
0.9
2+
~~~~
3+
4+
* Release date: 23 May, 2025.
5+
* Allow user to pass a cython include directory when using ``ExtModule``.
6+
* Fix error with Cython compilation error messages not being shown.
7+
* Fix issue with the root log level being set when building an extension module.
8+
* Use cdivision always as that is usually the intent when using compyle.
9+
* Add a ``COMPYLE_DEBUG`` environment variable to print debug information.
10+
* Explicitly type any float literals for single precision to improve GPU performance.
11+
* Fix bug with the directory where the sources were saved.
12+
* Support for NumPy 2 and Cython 3.x.
13+
* Drop Python 2 support.
14+
* Do late binding so the backend can be changed.
15+
* Fix NumPy deprecation errors.
16+
17+
118
0.8.1
219
~~~~~~
320

compyle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# See PEP 440 for more on suitable version numbers.
2-
__version__ = '0.9.dev'
2+
__version__ = '0.9'

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ def get_version():
3131
Development Status :: 4 - Beta
3232
Intended Audience :: Developers
3333
Intended Audience :: Science/Research
34-
License :: OSI Approved :: BSD License
3534
Natural Language :: English
3635
Operating System :: MacOS :: MacOS X
3736
Operating System :: Microsoft :: Windows
@@ -63,7 +62,7 @@ def get_version():
6362
author_email='prabhu@aero.iitb.ac.in',
6463
description='Execute a subset of Python on HPC platforms',
6564
long_description=open('README.rst').read(),
66-
license="BSD",
65+
license="BSD-3-Clause",
6766
url='https://github.com/pypr/compyle',
6867
classifiers=classifiers,
6968
packages=find_packages(),

0 commit comments

Comments
 (0)