Don't use upper bound dependencies any more

See https://iscinumpy.dev/post/bound-version-constraints/ for the rationale behind this change.

Closes #1800
This commit is contained in:
Simon Willison 2022-09-05 11:35:40 -07:00 committed by GitHub
commit 51030df186
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,21 +42,21 @@ setup(
include_package_data=True, include_package_data=True,
python_requires=">=3.7", python_requires=">=3.7",
install_requires=[ install_requires=[
"asgiref>=3.2.10,<3.6.0", "asgiref>=3.2.10",
"click>=7.1.1,<8.2.0", "click>=7.1.1",
"click-default-group-wheel>=1.2.2", "click-default-group-wheel>=1.2.2",
"Jinja2>=2.10.3,<3.1.0", "Jinja2>=2.10.3",
"hupper~=1.9", "hupper>=1.9",
"httpx>=0.20", "httpx>=0.20",
"pint~=0.9", "pint>=0.9",
"pluggy>=1.0,<1.1", "pluggy>=1.0",
"uvicorn~=0.11", "uvicorn>=0.11",
"aiofiles>=0.4,<0.9", "aiofiles>=0.4",
"janus>=0.6.2,<1.1", "janus>=0.6.2",
"asgi-csrf>=0.9", "asgi-csrf>=0.9",
"PyYAML>=5.3,<7.0", "PyYAML>=5.3",
"mergedeep>=1.1.1,<1.4.0", "mergedeep>=1.1.1",
"itsdangerous>=1.1,<3.0", "itsdangerous>=1.1",
], ],
entry_points=""" entry_points="""
[console_scripts] [console_scripts]
@ -72,14 +72,14 @@ setup(
"sphinx-copybutton", "sphinx-copybutton",
], ],
"test": [ "test": [
"pytest>=5.2.2,<7.2.0", "pytest>=5.2.2",
"pytest-xdist>=2.2.1,<2.6", "pytest-xdist>=2.2.1",
"pytest-asyncio>=0.17,<0.20", "pytest-asyncio>=0.17",
"beautifulsoup4>=4.8.1,<4.12.0", "beautifulsoup4>=4.8.1",
"black==22.6.0", "black==22.6.0",
"blacken-docs==1.12.1", "blacken-docs==1.12.1",
"pytest-timeout>=1.4.2,<2.2", "pytest-timeout>=1.4.2",
"trustme>=0.7,<0.10", "trustme>=0.7",
"cogapp>=3.3.0", "cogapp>=3.3.0",
], ],
"rich": ["rich"], "rich": ["rich"],