mirror of
https://github.com/simonw/datasette.git
synced 2026-07-22 23:44:41 +02:00
Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8da5208561 | ||
|
|
265c62344a | ||
|
|
6b459c8732 | ||
|
|
41060e7e7c |
4 changed files with 33 additions and 8 deletions
1
.github/workflows/test.yml
vendored
1
.github/workflows/test.yml
vendored
|
|
@ -24,6 +24,7 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: |
|
||||
pip install -e '.[test]'
|
||||
pip freeze
|
||||
- name: Run tests
|
||||
run: |
|
||||
pytest -n auto -m "not serial"
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
__version__ = "0.60"
|
||||
__version__ = "0.60.1"
|
||||
__version_info__ = tuple(__version__.split("."))
|
||||
|
|
|
|||
|
|
@ -4,6 +4,13 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
.. _v0_60.1:
|
||||
|
||||
0.60.1 (2022-01-20)
|
||||
-------------------
|
||||
|
||||
- Fixed a bug where installation on Python 3.6 stopped working due to a change to an underlying dependency. This release can now be installed on Python 3.6, but is the last release of Datasette that will support anything less than Python 3.7. (:issue:`1609`)
|
||||
|
||||
.. _v0_60:
|
||||
|
||||
0.60 (2022-01-13)
|
||||
|
|
|
|||
31
setup.py
31
setup.py
|
|
@ -58,6 +58,23 @@ setup(
|
|||
"mergedeep>=1.1.1,<1.4.0",
|
||||
"itsdangerous>=1.1,<3.0",
|
||||
"python-baseconv==1.2.2",
|
||||
# The following are known to work with 3.6
|
||||
'asgiref<=3.4.1;python_version<="3.6"',
|
||||
'click<=8.0.3;python_version<="3.6"',
|
||||
'click-default-group<=1.2.2;python_version<="3.6"',
|
||||
'Jinja2<=3.0.3;python_version<="3.6"',
|
||||
'hupper<=1.10.3;python_version<="3.6"',
|
||||
'httpx<=0.21.3;python_version<="3.6"',
|
||||
'pint<=0.17;python_version<="3.6"',
|
||||
'pluggy<=1.0.0;python_version<="3.6"',
|
||||
'uvicorn<=0.16.0;python_version<="3.6"',
|
||||
'aiofiles<=0.8.0;python_version<="3.6"',
|
||||
'janus<=0.7.0;python_version<="3.6"',
|
||||
'asgi-csrf<=0.9;python_version<="3.6"',
|
||||
'PyYAML<=6.0;python_version<="3.6"',
|
||||
'mergedeep<=1.3.4;python_version<="3.6"',
|
||||
'itsdangerous<=2.0.1;python_version<="3.6"',
|
||||
'python-baseconv<=1.2.2;python_version<="3.6"',
|
||||
],
|
||||
entry_points="""
|
||||
[console_scripts]
|
||||
|
|
@ -67,14 +84,14 @@ setup(
|
|||
extras_require={
|
||||
"docs": ["sphinx_rtd_theme", "sphinx-autobuild", "codespell"],
|
||||
"test": [
|
||||
"pytest>=5.2.2,<6.3.0",
|
||||
"pytest-xdist>=2.2.1,<2.6",
|
||||
"pytest-asyncio>=0.10,<0.17",
|
||||
"beautifulsoup4>=4.8.1,<4.11.0",
|
||||
"pytest==6.2.5",
|
||||
"pytest-xdist==2.5.0",
|
||||
"pytest-asyncio==0.16.0",
|
||||
"beautifulsoup4==4.10.0",
|
||||
"black==21.12b0",
|
||||
"pytest-timeout>=1.4.2,<2.1",
|
||||
"trustme>=0.7,<0.10",
|
||||
"cogapp>=3.3.0",
|
||||
"pytest-timeout==2.0.2",
|
||||
"trustme==0.9.0",
|
||||
"cogapp==3.3.0",
|
||||
],
|
||||
"rich": ["rich"],
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue