Skip to content

Commit

Permalink
Add python_requires to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cwdavies committed Jul 8, 2020
1 parent 19bdb62 commit bbd4e0d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from setuptools import find_packages, setup

install_requires = ["wagtail>=2.3,<2.10", "django-flags>=4.2,<5.0"]
install_requires = [
"wagtail~=2.0",
"django-flags>=4.2,<5.0",
]

testing_extras = ["coverage>=3.7.0"]

Expand All @@ -13,9 +16,10 @@
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
license="CC0",
version="4.2.1",
version="4.2.2",
include_package_data=True,
packages=find_packages(),
python_requires=">=3",
install_requires=install_requires,
extras_require={"testing": testing_extras},
classifiers=[
Expand Down

0 comments on commit bbd4e0d

Please sign in to comment.