From c4c038f9c38d0258e85000fa0f4562993e42fbc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Gaul?= Date: Fri, 14 Mar 2014 14:42:13 +0100 Subject: [PATCH] [setup] bump to 2.0.0 --- krypy/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/krypy/__init__.py b/krypy/__init__.py index 4012294..a4f6513 100644 --- a/krypy/__init__.py +++ b/krypy/__init__.py @@ -1,3 +1,3 @@ from . import linsys, deflation, recycling, utils __all__ = ['linsys', 'deflation', 'recycling', 'utils'] -__version__ = '2.0.0b1' +__version__ = '2.0.0' diff --git a/setup.py b/setup.py index c31f126..5961918 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def read(fname): setup(name='krypy', packages=['krypy', 'krypy.recycling'], version=__version__, - description='Krylov subspace methods for linear algebraic systems', + description='Krylov subspace methods for linear systems', long_description=read('README.md'), author='André Gaul', author_email='gaul@web-yard.de',