NuoDB's Python Driver now out of Beta with 1.2 Release

2013-08-08 Thread Lindsey Hoyem
As NuoDB announces the 1.2 Release today: http://bit.ly/187MJYX, the Python Driver is moved out of Beta. As a bit of background information, NuoDB is a distributed Database that can be deployed in any datacenter, in any cloud, anywhere, without the compromises inherent in other NewSQL solutions.

numba 0.10

2013-08-08 Thread mark florisson
Numba 0.10 has some new interesting features, thanks to some new contributors. In short, it has a code annotation tool, builtins min, max, enumerate and zip, a parallel range (open sourced from numbapro) and support for the raise statement. Many thanks to Eugene Toder, Jay Bourque and Björn Linse.

Eventlet is going to drop Python 2.5 support in favour of Python 3.3+

2013-08-08 Thread Sergey Shepelev
If you use Eventlet on Python 2.5 - bad news. Sample script to check: # relies on virtualenv activated or eventlet installed globally if python --version 2>&1 |fgrep -q 'Python 2.5' ; then if pip freeze |fgrep -q eventlet ; then echo 'bad news, read on' else echo ok fi else echo ok