diff --git a/docs/book/content/contributing/contributor_guide.md b/docs/book/content/contributing/contributor_guide.md index 76bf3470f..2cff18654 100644 --- a/docs/book/content/contributing/contributor_guide.md +++ b/docs/book/content/contributing/contributor_guide.md @@ -186,6 +186,6 @@ A large set of plots that compare the changes among key variables from the basel (Sec_ContribFootnotes)= ## Footnotes -[^recent_python]:The most recent version of Python from Anaconda is Python 3.9. `OG-Core` is currently tested to run on Python 3.8 through 3.10. +[^recent_python]:The most recent version of Python from Anaconda is Python 3.9. `OG-Core` is currently tested to run on Python 3.9 through 3.10. [^commandline_note]:The dollar sign is the end of the command prompt on a Mac. If you are using the Windows operating system, this is usually the right angle bracket (>). No matter the symbol, you don't need to type it (or anything to its left, which shows the current working directory) at the command line before you enter a command; the prompt symbol and preceding characters should already be there. diff --git a/ogcore/__init__.py b/ogcore/__init__.py index 7735c15c4..c7a0d5187 100644 --- a/ogcore/__init__.py +++ b/ogcore/__init__.py @@ -19,4 +19,4 @@ from ogcore.txfunc import * from ogcore.utils import * -__version__ = "0.10.1" +__version__ = "0.10.2" diff --git a/setup.py b/setup.py index 34dde14d7..e2a67b86e 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogcore", - version="0.10.1", + version="0.10.2", author="Jason DeBacker and Richard W. Evans", license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", description="A general equilibribum overlapping generations model for fiscal policy analysis",