From b1ca18377af74d10e982483aaea221349aae6a24 Mon Sep 17 00:00:00 2001 From: Ch3ri0ur Date: Thu, 15 Feb 2024 17:34:35 +0100 Subject: [PATCH] Unpin Python version and dont reread README.md in setup.py Unpin Python version and use the long_description that was read earlier instead of rereading it. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 924a140..656343e 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def get_version(): name="sphinx-tabs", version=get_version(), description="Tabbed views for Sphinx", - long_description=open("README.md").read(), + long_description=long_description, long_description_content_type="text/markdown", author="djungelorm", author_email="djungelorm@users.noreply.github.com", @@ -24,7 +24,7 @@ def get_version(): include_package_data=True, url="https://github.com/executablebooks/sphinx-tabs", license="MIT", - python_requires="~=3.7", + python_requires=">=3.7", install_requires=["sphinx", "pygments", "docutils"], extras_require={ "testing": [