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 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.
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