Put python3.8 support back in:

- We should create a breaking changes branch to be
  merged only when we are ready to start the next
  major version release cycle for all our
  maintained libraries.
This commit is contained in:
fselmo
2024-11-25 10:24:29 -07:00
committed by felipe
parent c6a24e411c
commit 4be68af0db
4 changed files with 30 additions and 7 deletions

View File

@ -50,7 +50,7 @@ setup(
install_requires=[
"eth-utils>=2",
],
python_requires=">=3.9, <4",
python_requires=">=3.8, <4",
extras_require=extras_require,
py_modules=["<MODULE_NAME>"],
license="MIT",
@ -64,6 +64,7 @@ setup(
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",