From 9ee977f050157fb23153eb931c544ae5018211fa Mon Sep 17 00:00:00 2001 From: gabino Date: Fri, 27 Dec 2024 14:14:57 -0600 Subject: [PATCH] Update setup.py to require Python 3.8 and bump version to 2.0.0 --- clabe/version.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/clabe/version.py b/clabe/version.py index 8933c93..afced14 100644 --- a/clabe/version.py +++ b/clabe/version.py @@ -1 +1 @@ -__version__ = '2.0.0.dev0' +__version__ = '2.0.0' diff --git a/setup.py b/setup.py index fdee387..f2e7bc9 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ packages=setuptools.find_packages(), include_package_data=True, package_data=dict(clabe=['py.typed']), + python_requires='>=3.8', install_requires=['pydantic>=2.10.3'], classifiers=[ 'Programming Language :: Python :: 3',