Skip to content

Commit 1eb20e2

Browse files
Merge pull request #120 from pypr/release-0.9
Prepare for release 0.9.
2 parents 868990d + bdccfd4 commit 1eb20e2

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGES.rst

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

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.10.dev0'

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='[email protected]',
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)