Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0.8.5 - nevezamzer
  • Loading branch information
serge-sans-paille committed Apr 23, 2018
1 parent de880e6 commit 6f9fc99
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions Changelog
@@ -1,3 +1,17 @@
2018-04-23 Serge Guelton <serge.guelton@telecom-bretagne.eu>

* numpy.fft support (thanks to Jean Laroche)

* Faster generalized expression

* Faster numpy.transpose, numpy.argmax, numpy reduction

* Sphinx-compatible generated docstring (thanks to Pierre Augier)

* Python output through ``-P`` (thanks to Pierre Augier)

* Many bugfixes and numpy improvements (thanks to Yann Diorecet and Jean Laroche)

2018-02-05 Serge Guelton <serge.guelton@telecom-bretagne.eu>

* Slimmer generated binaries
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -6,9 +6,9 @@ http://pythran.readthedocs.io
What is it?
-----------

Pythran is a Python to c++ compiler for a subset of the Python language, with a
Pythran is an ahead of time compiler for a subset of the Python language, with a
focus on scientific computing. It takes a Python module annotated with a few
interface description and turns it into a native python module with the same
interface description and turns it into a native Python module with the same
interface, but (hopefully) faster.

It is meant to efficiently compile **scientific programs**, and takes advantage
Expand Down
2 changes: 1 addition & 1 deletion docs/CLI.rst
Expand Up @@ -29,7 +29,7 @@ The generated native ``.so`` module can then be used with the Python interpreter
Pythran version can be dumped through ``--version``::

$> pythran --version 2>&1
0.8.4post0
0.8.5

The module-level ``__pythran__`` variable indicates that the module loaded has been pythranized::

Expand Down
4 changes: 2 additions & 2 deletions pythran/version.py
@@ -1,3 +1,3 @@
__version__ = '0.8.4post0'
__version__ = '0.8.5'
__url__ = 'https://github.com/serge-sans-paille/pythran'
__descr__ = 'a claimless python to c++ converter'
__descr__ = 'Ahead of Time compiler for numeric kernels'

0 comments on commit 6f9fc99

Please sign in to comment.