From 0fc7a42f4d8a6316b907c8e0a49f8bf1d825d5a8 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 5 Jun 2021 16:37:05 -0700 Subject: [PATCH] Release 0.4.1 Now depends on datasette>=0.56.1 Refs https://github.com/simonw/datasette/issues/1360 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index aee1767..cf21847 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup import os -VERSION = "0.4" +VERSION = "0.4.1" def get_long_description(): @@ -28,7 +28,7 @@ def get_long_description(): version=VERSION, packages=["datasette_auth_passwords"], entry_points={"datasette": ["auth_passwords = datasette_auth_passwords"]}, - install_requires=["datasette>=0.44"], + install_requires=["datasette>=0.56.1"], extras_require={"test": ["pytest", "pytest-asyncio", "httpx"]}, tests_require=["datasette-auth-passwords[test]"], package_data={