From 6ddabc14a8503b90c8580ada51816fb301b45b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Cort=C3=A9s?= Date: Mon, 15 May 2023 21:01:04 -0500 Subject: [PATCH] chore: make python3.9 as a minimum version --- README.rst | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 244ce2a..6300c84 100644 --- a/README.rst +++ b/README.rst @@ -17,7 +17,7 @@ Python. Installation ------------ -You can install nyoibo with pip. Nyoibo requires python 3.7 or higer. +You can install nyoibo with pip. Nyoibo requires python 3.9 or higher. ``pip install nyoibo`` diff --git a/setup.py b/setup.py index dd0da78..4c6aeee 100644 --- a/setup.py +++ b/setup.py @@ -54,14 +54,14 @@ version=VERSION, packages=find_packages(), author='Julián Cortés', - author_email='pity7736@gmail.com', + author_email='julian.cortes77@protonmail.com', description='Implement attributes accessors in an easy way', long_description=readme, keywords='accessors private', ext_modules=extensions, url='https://github.com/pity7736/nyoibo', tests_require=tests_require, - python_requires='>=3.7', + python_requires='>=3.9', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers',