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