From 820c3a3ac478e5a0072d37a0df06378e1af20155 Mon Sep 17 00:00:00 2001 From: Pietro Delugas Date: Thu, 29 Feb 2024 15:34:00 +0100 Subject: [PATCH] update version numbers to 1.5.1 --- docs/conf.py | 2 +- qeschema/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ea48291..e861a6c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Davide Brunato, Pietro Delugas' # The full version, including alpha/beta/rc tags -release = '1.5.0' +release = '1.5.1' # -- General configuration --------------------------------------------------- diff --git a/qeschema/__init__.py b/qeschema/__init__.py index 5110e2f..85684f6 100644 --- a/qeschema/__init__.py +++ b/qeschema/__init__.py @@ -15,7 +15,7 @@ from .exceptions import QESchemaError, XmlDocumentError from .utils import set_logger -__version__ = '1.5.0' +__version__ = '1.5.1' __all__ = [ 'XmlDocument', 'QeDocument', 'PwDocument', 'PhononDocument', 'NebDocument', diff --git a/setup.py b/setup.py index e71a0ee..a4c5f62 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='qeschema', - version='1.5.0', + version='1.5.1', install_requires=['xmlschema>=1.6.4,<2.4.0', 'numpy'], extras_require={ 'HDF5': ['h5py'],