Skip to content

Commit

Permalink
release 0.17.1 fixing build with numpy v1.16
Browse files Browse the repository at this point in the history
close #1205
  • Loading branch information
kif committed Apr 24, 2019
1 parent 133dfec commit c779948
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
:Author: Jérôme Kieffer
:Date: 19/12/2018
:Date: 24/04/2019
:Keywords: changelog

ChangeLog of Versions
=====================

0.17.1 24/04/2019
-----------------
* fix build with numpy 1.16

0.17.0 19/12/2018
-----------------
* Only 200 commits in a couple of month, this ia a small release
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ def patch_extension(self, ext):
patched_exts = cythonize(
[ext],
compiler_directives={'embedsignature': True,
'language_level': 3},
'language_level': 2},
force=self.force_cython,
compile_time_env={"HAVE_OPENMP": self.use_openmp}
)
Expand Down Expand Up @@ -817,7 +817,7 @@ def cythonize_extensions(self):
cythonize(
self.extensions,
compiler_directives={'embedsignature': True,
'language_level': 3},
'language_level': 2},
force=True
)

Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

MAJOR = 0
MINOR = 17
MICRO = 0
MICRO = 1
RELEV = "final" # <16
SERIAL = 0 # <16

Expand Down

0 comments on commit c779948

Please sign in to comment.