File tree Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2018-11-06 Serge Guelton <
[email protected] >
2
+
3
+ * Moving to xsimd as vectorization engine, requires -DUSE_XSIMD
4
+
5
+ * Better support of view conversion from Python to Pythran
6
+
7
+ * Improved Cython integration
8
+
9
+ * Improved documentation, add exemple section
10
+
11
+ * Updated ArchLinux Packaging
12
+
13
+ * Remove useless warnings during compilation
14
+
15
+ * Faster ``abs(x**2)`` for complex numbers
16
+
17
+ * IPython magic now accepts most optimization flags
18
+
19
+ * Automatic detection of partially (or fully) constant shape for arrays
20
+
21
+ * Add ignoreflags settings to .pythranrc to skip some compiler flags
22
+
23
+ * Quad number (aka long double) basic support
24
+
25
+ * And many minor bugfixes, as usual :-)
26
+
27
+
1
28
2018-09-16 Serge Guelton <
[email protected] >
2
29
3
30
* Decent support for ``is None`` pattern
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ The generated native ``.so`` module can then be used with the Python interpreter
29
29
Pythran version can be dumped through ``--version ``::
30
30
31
31
$> pythran --version 2>&1
32
- 0.8.7
32
+ 0.9.0
33
33
34
34
The module-level ``__pythran__ `` variable indicates that the module loaded has been pythranized::
35
35
Original file line number Diff line number Diff line change 1
- __version__ = '0.8.7 '
1
+ __version__ = '0.9.0 '
2
2
__url__ = 'https://github.com/serge-sans-paille/pythran'
3
3
__descr__ = 'Ahead of Time compiler for numeric kernels'
You can’t perform that action at this time.
0 commit comments