diff --git a/pyproject.toml b/pyproject.toml index 8890df5..522d539 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,10 @@ [project] name = "reattempt" -version = "1.1.1" +version = "1.1.2" description = "Retrying a python function when exceptions are raised" authors = [{name = "Sylvain Mouquet", email = "sylvain.mouquet@gmail.com"}] readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ ] license = { text = "MIT" } diff --git a/reattempt/__init__.py b/reattempt/__init__.py index a63d1e7..8b3ac0b 100644 --- a/reattempt/__init__.py +++ b/reattempt/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.1.1" +__version__ = "1.1.2" __all__ = ("__version__", "reattempt") import asyncio