mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Switch to ~= dependencies, closes #532
This commit is contained in:
parent
4d2fdafe39
commit
8c09c10f25
1 changed files with 13 additions and 13 deletions
26
setup.py
26
setup.py
|
|
@ -41,14 +41,14 @@ setup(
|
||||||
package_data={"datasette": ["templates/*.html"]},
|
package_data={"datasette": ["templates/*.html"]},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"click>=6.7",
|
"click~=6.7",
|
||||||
"click-default-group==1.2",
|
"click-default-group~=1.2",
|
||||||
"Jinja2==2.10.1",
|
"Jinja2~=2.10.1",
|
||||||
"hupper==1.0",
|
"hupper~=1.0",
|
||||||
"pint==0.8.1",
|
"pint~=0.8.1",
|
||||||
"pluggy>=0.12.0",
|
"pluggy~=0.12.0",
|
||||||
"uvicorn>=0.8.1",
|
"uvicorn~=0.8.1",
|
||||||
"aiofiles==0.4.0",
|
"aiofiles~=0.4.0",
|
||||||
],
|
],
|
||||||
entry_points="""
|
entry_points="""
|
||||||
[console_scripts]
|
[console_scripts]
|
||||||
|
|
@ -58,11 +58,11 @@ setup(
|
||||||
extras_require={
|
extras_require={
|
||||||
"docs": ["sphinx_rtd_theme", "sphinx-autobuild"],
|
"docs": ["sphinx_rtd_theme", "sphinx-autobuild"],
|
||||||
"test": [
|
"test": [
|
||||||
"pytest==4.6.1",
|
"pytest~=4.6.1",
|
||||||
"pytest-asyncio==0.10.0",
|
"pytest-asyncio~=0.10.0",
|
||||||
"aiohttp==3.5.3",
|
"aiohttp~=3.5.3",
|
||||||
"beautifulsoup4==4.6.1",
|
"beautifulsoup4~=4.6.1",
|
||||||
"asgiref==3.1.2",
|
"asgiref~=3.1.2",
|
||||||
]
|
]
|
||||||
+ maybe_black,
|
+ maybe_black,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue