Skip to content

Commit

Permalink
fix: Relax python_requires version constraint (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaswilli authored Oct 5, 2023
1 parent 784f8df commit 9e419df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def parse_requirements_file(path):
include_package_data=True,
zip_safe=False,
install_requires=parse_requirements_file("requirements.txt"),
python_requires=">=3.8.0,<=3.11",
python_requires=">=3.8.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand All @@ -73,6 +73,7 @@ def parse_requirements_file(path):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
Expand Down

0 comments on commit 9e419df

Please sign in to comment.