diff --git a/HISTORY.rst b/HISTORY.rst index d8ed790..46989d8 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,7 @@ +1.1.1 (25.02.2021) +++++++++++++++++++ +- NLP-1915: Fix for setup.py regex + 1.1.0 (02.02.2021) ++++++++++++++++++ - NLP-895: Improved logging diff --git a/Makefile b/Makefile index da12f47..6e19407 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ ERROR_PYTHON_VERSION = 10 ### Main defs PACKAGE_NAME = hmrb -PACKAGE_VERSION = 1.1.0 +PACKAGE_VERSION = 1.1.1 srcdir = $(CURDIR)/$(PACKAGE_NAME) builddir = $(CURDIR)/build diff --git a/docs/intro.rst b/docs/intro.rst index f589a3a..1bbc86d 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -21,6 +21,8 @@ Rules and heuristics are often used to kick start a project which has insufficie Release History --------------- -:Version: ``v1.1.0 (02.02.2021)`` +:Version: ``v1.1.1 (25.02.2021)`` + + ``v1.1.0 (02.02.2021)`` ``v1.0.0 (29.04.2020)`` diff --git a/hmrb/__init__.py b/hmrb/__init__.py index e3884b0..b1f6630 100644 --- a/hmrb/__init__.py +++ b/hmrb/__init__.py @@ -1,3 +1,3 @@ name = "hmrb" -__version__ = "1.1.0" +__version__ = "1.1.1" __release__ = __version__ diff --git a/setup.py b/setup.py index e68d9d7..ed9ca44 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def read_requirements(file: str) -> List[str]: raise FileNotFoundError(file) with open(file) as fd: unparsed_requirements = fd.read() - return re.findall(r"[\w-]+==[\d.]+", unparsed_requirements) + return re.findall(r"[\w-]+[=<>]=[\d.,=<>]+", unparsed_requirements) setup_params = dict( name='hmrb',