From 27070f44bd4d3effa34201676620b38ce0f20ef4 Mon Sep 17 00:00:00 2001 From: David Ketcheson Date: Mon, 16 Nov 2020 08:46:45 +0300 Subject: [PATCH] Bump version to 1.0.1 for Zenodo release. --- doc/conf.py | 2 +- nodepy/__init__.py | 2 +- nodepy/runge_kutta_method.py | 4 ++-- setup.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 9444d07..a223d8c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -68,7 +68,7 @@ # The short X.Y version. version = '1.0' # The full version, including alpha/beta/rc tags. -release = '1.0.0' +release = '1.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/nodepy/__init__.py b/nodepy/__init__.py index c66e9d3..9de0e55 100644 --- a/nodepy/__init__.py +++ b/nodepy/__init__.py @@ -3,7 +3,7 @@ """ from __future__ import absolute_import -__version__="1.0.0" +__version__="1.0.1" import nodepy.runge_kutta_method as rk import nodepy.twostep_runge_kutta_method as tsrk diff --git a/nodepy/runge_kutta_method.py b/nodepy/runge_kutta_method.py index 1cbaf45..a50ee22 100644 --- a/nodepy/runge_kutta_method.py +++ b/nodepy/runge_kutta_method.py @@ -3716,10 +3716,10 @@ def extrap(k,base='euler',seq='harmonic',embedded=False, shuosher=False): """ Construct extrapolation methods as Runge-Kutta methods. **Input**: k -- number of grid points & number of extrapolation iterations - base -- the base method to be used ('euler' or 'midpoint') + base -- the base method to be used ('euler', 'midpoint', or 'implicit euler') seq -- extrapolation sequence - **Output**: A ExplicitRungeKuttaMethod + **Output**: A ExplicitRungeKuttaMethod (or RungeKuttaMethod if base=='implicit euler') **Examples**:: diff --git a/setup.py b/setup.py index 4ce57ed..94814ca 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,11 @@ from distutils.core import setup setup(name='nodepy', - version='1.0.0', + version='1.0.1', packages=['nodepy'], author=['David Ketcheson'], author_email='dketch@gmail.com', - url='http://numerics.kaust.edu.sa/nodepy/', + url='https://github.com/ketch/nodepy', description='Numerical ODE solvers in Python', license='modified BSD', install_requires=['numpy','sympy','matplotlib'],