diff -Nru krypy-1.0.0ubuntu1/README.md krypy-1.0.1/README.md --- krypy-1.0.0ubuntu1/README.md 2013-07-24 11:57:30.000000000 +0000 +++ krypy-1.0.1/README.md 2013-07-24 14:02:31.000000000 +0000 @@ -45,7 +45,7 @@ # Installing ### Ubuntu -There's an [Ubuntu PPA](https://launchpad.net/~andrenarchy/+archive/python) with a package of the Python 2 version. +There's an [Ubuntu PPA](https://launchpad.net/~andrenarchy/+archive/python) with packages for Python 2 and Python 3. ### Installing from source KryPy has the following dependencies: diff -Nru krypy-1.0.0ubuntu1/README.txt krypy-1.0.1/README.txt --- krypy-1.0.0ubuntu1/README.txt 2013-07-24 11:57:30.000000000 +0000 +++ krypy-1.0.1/README.txt 2013-07-24 14:02:31.000000000 +0000 @@ -45,7 +45,7 @@ # Installing ### Ubuntu -There's an [Ubuntu PPA](https://launchpad.net/~andrenarchy/+archive/python) with a package of the Python 2 version. +There's an [Ubuntu PPA](https://launchpad.net/~andrenarchy/+archive/python) with packages for Python 2 and Python 3. ### Installing from source KryPy has the following dependencies: diff -Nru krypy-1.0.0ubuntu1/debian/changelog krypy-1.0.1/debian/changelog --- krypy-1.0.0ubuntu1/debian/changelog 2013-07-24 13:38:48.000000000 +0000 +++ krypy-1.0.1/debian/changelog 2013-07-24 14:03:14.000000000 +0000 @@ -1,3 +1,9 @@ +krypy (1.0.1) raring; urgency=low + + * new upstream version + + -- André Gaul Wed, 24 Jul 2013 16:02:48 +0200 + krypy (1.0.0ubuntu1) raring; urgency=low * add Python 3 package. diff -Nru krypy-1.0.0ubuntu1/setup.py krypy-1.0.1/setup.py --- krypy-1.0.0ubuntu1/setup.py 2013-07-24 11:57:30.000000000 +0000 +++ krypy-1.0.1/setup.py 2013-07-24 14:02:31.000000000 +0000 @@ -1,14 +1,15 @@ # -*- coding: utf-8 -*- import os from distutils.core import setup +import codecs # shamelessly copied from VoroPy def read(fname): - return open(os.path.join(os.path.dirname(__file__), fname)).read() + return codecs.open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read() setup( name = 'krypy', packages = ['krypy'], - version = '1.0.0', + version = '1.0.1', description = 'Krylov subspace methods for linear algebraic systems', long_description = read('README.md'), author = 'André Gaul',