Skip to content

Commit

Permalink
Merge pull request #146 from pomfort/dev/fix-python-setup
Browse files Browse the repository at this point in the history
fix Python version requirement in setup.py
  • Loading branch information
ptrpfn authored Mar 13, 2024
2 parents 7d93a39 + d0b72de commit 5aaecec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"requests>=2.25.1",
"xxhash>=2.0.0",
"python-dateutil>=2.8.2",
"importlib-metadata>=4.0.1; python_version < '3.8'",
"importlib-metadata>=4.0.1; python_version >= '3.11'",
],
dependency_links=[],
long_description=long_description,
Expand All @@ -34,7 +34,7 @@
tests_require=["pytest", "pytest_mock", "pyfakefs", "freezegun", "requests-mock", "testfixtures"],
url="/~https://github.com/ascmitc/mhl",
use_scm_version=True,
python_requires="~=3.7",
python_requires=">=3.11",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 5aaecec

Please sign in to comment.