Skip to content

Commit

Permalink
fix(pyproject.toml): requires-python minimum 3.10 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainmouquet authored Oct 9, 2024
1 parent ecd56f7 commit f388610
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion reattempt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.1.1"
__version__ = "1.1.2"
__all__ = ("__version__", "reattempt")

import asyncio
Expand Down

0 comments on commit f388610

Please sign in to comment.