From b3e7b494ab442a9c5e0c5235422c5a2f1f1492de Mon Sep 17 00:00:00 2001 From: cirospaciari Date: Tue, 27 Jun 2023 18:09:13 -0300 Subject: [PATCH] drop 3.7 support because its EOL today --- pyproject.toml | 4 ++-- setup.py | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 987b70c..7a07969 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta" [project] name = "socketify" -version = "0.0.21" +version = "0.0.22" authors = [ { name="Ciro Spaciari", email="ciro.spaciari@gmail.com" }, ] description = "Bringing WebSockets, Http/Https High Performance servers for PyPy3 and Python3" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", diff --git a/setup.py b/setup.py index ff40a26..30b0718 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ import sys vi = sys.version_info -if vi < (3, 7): - raise RuntimeError("socketify requires Python 3.7 or greater") +if vi < (3, 8): + raise RuntimeError("socketify requires Python 3.8 or greater") # if sys.platform in ('win32', 'cygwin', 'cli'): # raise RuntimeError('socketify does not support Windows at the moment') @@ -58,7 +58,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setuptools.setup( name="socketify", - version="0.0.21", + version="0.0.22", platforms=["any"], author="Ciro Spaciari", author_email="ciro.spaciari@gmail.com", @@ -88,7 +88,7 @@ setuptools.setup( "./native/*/*/*", ] }, - python_requires=">=3.7", + python_requires=">=3.8", install_requires=["cffi>=1.0", "setuptools>=58.1.0"], has_ext_modules=lambda: True, cmdclass={}, # cmdclass={'sdist': Prepare, 'build_ext': Makefile},