From 753e0e9af0601c715e48248055c36a813da8ee4f Mon Sep 17 00:00:00 2001 From: Nathan Baker Date: Wed, 4 Aug 2021 20:08:55 -0700 Subject: [PATCH] Update version number. --- docs/conf.py | 6 +----- pdb2pqr/_version.py | 5 +++-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 67d228e5..54bd77b4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,16 +10,12 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -import pdb2pqr - - # -- Project information ----------------------------------------------------- project = "pdb2pqr" copyright = "2020, Battelle Memorial Institute" author = "Nathan Baker and many others" -release = pdb2pqr.__version__ - +release = "3.2.0" # The full version, including alpha/beta/rc tags diff --git a/pdb2pqr/_version.py b/pdb2pqr/_version.py index e9ee7b08..b07458c2 100644 --- a/pdb2pqr/_version.py +++ b/pdb2pqr/_version.py @@ -1,7 +1,8 @@ -"""PDBX Version number. +"""PDB2PQR Version number. Store the version here so: + * we don't load dependencies by storing it in :file:`__init__.py` * we can import it in setup.py for the same reason * we can import it into your module """ -__version__ = "3.1.5" +__version__ = "3.2.0"