From f7bcd2006944c1214caf33325ac83f1d3da32f06 Mon Sep 17 00:00:00 2001 From: Matthew Evans Date: Thu, 9 Nov 2023 21:58:43 +0000 Subject: [PATCH] Bump version number --- matador/__init__.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/matador/__init__.py b/matador/__init__.py index fa5c0bc9..be9f21d5 100644 --- a/matador/__init__.py +++ b/matador/__init__.py @@ -12,16 +12,6 @@ __all__ = ["__version__"] __author__ = "Matthew Evans" __maintainer__ = "Matthew Evans" -__version__ = "0.10.1" +__version__ = "0.10.2" script_epilog = f"Written and maintained by Matthew Evans (me388@cam.ac.uk) 2016-2022, version {__version__}." - - -if sys.version_info.minor == 7: - import warnings - - warnings.warn( - "v0.10 of the `matador` library will be the last to support Python 3.7. " - "Please upgrade to Python 3.8+ to use v0.11 and later versions of `matador`.", - DeprecationWarning, - )