Skip to content

Commit e83dc14

Browse files
authored
Unpin Python version and dont reread README.md in setup.py (#192)
1 parent b8666a5 commit e83dc14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ def get_version():
1616
name="sphinx-tabs",
1717
version=get_version(),
1818
description="Tabbed views for Sphinx",
19-
long_description=open("README.md").read(),
19+
long_description=long_description,
2020
long_description_content_type="text/markdown",
2121
author="djungelorm",
2222
author_email="djungelorm@users.noreply.github.com",
2323
packages=["sphinx_tabs"],
2424
include_package_data=True,
2525
url="https://github.com/executablebooks/sphinx-tabs",
2626
license="MIT",
27-
python_requires="~=3.7",
27+
python_requires=">=3.7",
2828
install_requires=["sphinx", "pygments", "docutils"],
2929
extras_require={
3030
"testing": [

0 commit comments

Comments
 (0)