Newer version of Python 3

Is there any plans to upgrade python 3 to a newer version like 3.5?

6 Likes

Before the upgrade, maybe can we wait some time for the release of Python 3.6 which brings for example formatted string literals?

Also, an upgrade of Numpy would be nice. Codingame version is 1.8.2 while the last release is 1.11.2. I encountered unexpected slowdowns with some functions, so I guess the problem is with the version.

1 Like

Python 3 has been updated to version 3.5.3
Also Numpy has been updated to 1.12

@UZMeNow
@Delgan
@nicola1
@imrel
@oook
@trolleysolution

3 Likes

Why not 3.6 with one go?

and what about scipy:

import numpy as np
from scipy import ndimage
a = ndimage.measurements.label(np.eye(3))
print(a)

ImportError: /usr/local/lib/python3.5/dist-packages/scipy/special/_comb.cpython-35m-x86_64-linux-gnu.so: failed to map segment from shared object: Cannot allocate memory
at basic.py. in <module> on line 20
at init.py. in <module> on line 638
at init.py. in <module> on line 51
at filters.py. in <module> on line 37
at init.py. in <module> on line 161
at Answer.py. in <module> on line 2

Thank you for the upgrade (Y)

a few months later: any news on maybe upgrading to 3.6? Thanks

3.6 was released so long time ago. Weird that we do not have 3.6.

Hint: Wait ~2 months, and do 3.7 please.

import sys
print(sys.version)
# prints: 3.6.3 (default, Oct  3 2017, 21:16:13)