Pin all versions to work with Python 3.6, refs #1609

This commit is contained in:
Simon Willison 2022-01-20 17:18:29 -08:00
commit 41060e7e7c

View file

@ -42,21 +42,21 @@ setup(
include_package_data=True, include_package_data=True,
python_requires=">=3.6", python_requires=">=3.6",
install_requires=[ install_requires=[
"asgiref>=3.2.10,<3.5.0", "asgiref==3.4.1",
"click>=7.1.1,<8.1.0", "click==8.0.3",
"click-default-group~=1.2.2", "click-default-group==1.2.2",
"Jinja2>=2.10.3,<3.1.0", "Jinja2==3.0.3",
"hupper~=1.9", "hupper==1.10.3",
"httpx>=0.20", "httpx==0.21.3",
"pint~=0.9", "pint==0.17",
"pluggy>=1.0,<1.1", "pluggy==1.0.0",
"uvicorn~=0.11", "uvicorn==0.16.0",
"aiofiles>=0.4,<0.9", "aiofiles==0.8.0",
"janus>=0.6.2,<1.1", "janus==0.7.0",
"asgi-csrf>=0.9", "asgi-csrf==0.9",
"PyYAML>=5.3,<7.0", "PyYAML==6.0",
"mergedeep>=1.1.1,<1.4.0", "mergedeep==1.3.4",
"itsdangerous>=1.1,<3.0", "itsdangerous==2.0.1",
"python-baseconv==1.2.2", "python-baseconv==1.2.2",
], ],
entry_points=""" entry_points="""
@ -67,14 +67,14 @@ setup(
extras_require={ extras_require={
"docs": ["sphinx_rtd_theme", "sphinx-autobuild", "codespell"], "docs": ["sphinx_rtd_theme", "sphinx-autobuild", "codespell"],
"test": [ "test": [
"pytest>=5.2.2,<6.3.0", "pytest==6.2.5",
"pytest-xdist>=2.2.1,<2.6", "pytest-xdist==2.5.0",
"pytest-asyncio>=0.10,<0.17", "pytest-asyncio==0.16.0",
"beautifulsoup4>=4.8.1,<4.11.0", "beautifulsoup4==4.10.0",
"black==21.12b0", "black==21.12b0",
"pytest-timeout>=1.4.2,<2.1", "pytest-timeout==2.0.2",
"trustme>=0.7,<0.10", "trustme==0.9.0",
"cogapp>=3.3.0", "cogapp==3.3.0",
], ],
"rich": ["rich"], "rich": ["rich"],
}, },