File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
1180.8.1
219~~~~~~
320
Original file line number Diff line number Diff line change 11# See PEP 440 for more on suitable version numbers.
2- __version__ = '0.9.dev '
2+ __version__ = '0.9'
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ def get_version():
3131Development Status :: 4 - Beta
3232Intended Audience :: Developers
3333Intended Audience :: Science/Research
34- License :: OSI Approved :: BSD License
3534Natural Language :: English
3635Operating System :: MacOS :: MacOS X
3736Operating 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 (),
You can’t perform that action at this time.
0 commit comments