-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drop 3.7 support because its EOL today
- Loading branch information
1 parent
34f3d04
commit b3e7b49
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') | ||
|
@@ -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]", | ||
|
@@ -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}, | ||
|