Skip to content

Commit

Permalink
drop 3.7 support because its EOL today
Browse files Browse the repository at this point in the history
  • Loading branch information
cirospaciari committed Jun 27, 2023
1 parent 34f3d04 commit b3e7b49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]" },
]
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",
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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')
Expand Down Expand Up @@ -58,7 +58,7 @@

setuptools.setup(
name="socketify",
version="0.0.21",
version="0.0.22",
platforms=["any"],
author="Ciro Spaciari",
author_email="[email protected]",
Expand Down Expand Up @@ -88,7 +88,7 @@
"./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},
Expand Down

0 comments on commit b3e7b49

Please sign in to comment.