File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed
Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 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+
1250.8.1
226~~~~~~
327
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.10.dev0 '
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():
63626463 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