From c70383f033c1f483514c61eb603645ecb6640ca5 Mon Sep 17 00:00:00 2001 From: Zeev Rotshtein Date: Wed, 6 Nov 2024 15:28:25 +0200 Subject: [PATCH] Fix python_requires and bump version --- python_utils/__about__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python_utils/__about__.py b/python_utils/__about__.py index 8db9614..a96a6fa 100644 --- a/python_utils/__about__.py +++ b/python_utils/__about__.py @@ -19,4 +19,4 @@ ) __url__: str = 'https://github.com/WoLpH/python-utils' # Omit type info due to automatic versioning script -__version__ = '3.9.0' +__version__ = '3.9.1' diff --git a/setup.py b/setup.py index 74f4a55..8a66f9d 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ if __name__ == '__main__': setuptools.setup( - python_requires='>3.9.0', + python_requires='>=3.9.0', name='python-utils', version=about['__version__'], author=about['__author__'],