New release of any kind?

Issue #21 resolved
Yaroslav Halchenko created an issue

Just got this report for compatibility with python 3.5 in debian:

+Index: mpi4py-1.3.1+hg20131106/src/python.c
+===================================================================
+--- mpi4py-1.3.1+hg20131106.orig/src/python.c
++++ mpi4py-1.3.1+hg20131106/src/python.c
+@@ -125,7 +125,9 @@
+   setlocale(LC_ALL, "");
+
+   for (i=0; i<argc; i++) {
+-#if defined(__APPLE__) && PY_VERSION_HEX >= 0x03020000
++#if PY_VERSION_HEX >= 0x03050000
++    args[i] = Py_DecodeLocale(argv[i], NULL);
++#elif defined(__APPLE__) && PY_VERSION_HEX >= 0x03020000
+     args[i] = _Py_DecodeUTF8_surrogateescape(argv[i], strlen(argv[i]));
+ #else
+     args[i] = _Py_char2wchar(argv[i], NULL);

and then realized that there were no release for a while! and in Debian we even carry some snapshot (1.3.1+hg20131106-2), so I wondered to ask -- is new release coming? ;)

Cheers and Happy Summer(s)!

Comments (2)

  1. Lisandro Dalcin

    Well, it seems I cannot delay it any longer. The things is that next release will have a few changes I'm not confident about, and I didn't have time to ask for comment in our ML.

  2. Log in to comment