Skip to content

Commit b3e7b49

Browse files
committed
drop 3.7 support because its EOL today
1 parent 34f3d04 commit b3e7b49

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "socketify"
7-
version = "0.0.21"
7+
version = "0.0.22"
88
authors = [
99
{ name="Ciro Spaciari", email="ciro.spaciari@gmail.com" },
1010
]
1111
description = "Bringing WebSockets, Http/Https High Performance servers for PyPy3 and Python3"
1212
readme = "README.md"
13-
requires-python = ">=3.7"
13+
requires-python = ">=3.8"
1414
classifiers = [
1515
"Programming Language :: Python :: 3",
1616
"License :: OSI Approved :: MIT License",

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import sys
22

33
vi = sys.version_info
4-
if vi < (3, 7):
5-
raise RuntimeError("socketify requires Python 3.7 or greater")
4+
if vi < (3, 8):
5+
raise RuntimeError("socketify requires Python 3.8 or greater")
66

77
# if sys.platform in ('win32', 'cygwin', 'cli'):
88
# raise RuntimeError('socketify does not support Windows at the moment')
@@ -58,7 +58,7 @@
5858

5959
setuptools.setup(
6060
name="socketify",
61-
version="0.0.21",
61+
version="0.0.22",
6262
platforms=["any"],
6363
author="Ciro Spaciari",
6464
author_email="ciro.spaciari@gmail.com",
@@ -88,7 +88,7 @@
8888
"./native/*/*/*",
8989
]
9090
},
91-
python_requires=">=3.7",
91+
python_requires=">=3.8",
9292
install_requires=["cffi>=1.0", "setuptools>=58.1.0"],
9393
has_ext_modules=lambda: True,
9494
cmdclass={}, # cmdclass={'sdist': Prepare, 'build_ext': Makefile},

0 commit comments

Comments
 (0)