From 215d61c18898760109cd55b0cb9c0195bbebc29e Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 6 Sep 2021 21:01:09 +0300 Subject: [PATCH] pyproject.toml: limit SQLAlchemy to < 1.4.23 SQLAlchemy gets pulled in by csvkit's agate-sql dependency and there is currently an issue with Poetry's parsing of the SQLAlchemy 1.4.23 constraints. Temporarily explicitly install a version of SQLAlchemy that works (can remove later once Poetry fixes this). Anyways, I am not using any SQLAlchemy features that I know of. See: https://github.com/python-poetry/poetry/issues/4402 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 200fd17..bd54fed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ langid = "^1.1.6" colorama = "^0.4.4" spdx-license-list = "^0.5.2" ftfy = "^5.9" +SQLAlchemy = ">=1.3.3,<1.4.23" [tool.poetry.dev-dependencies] pytest = "^6.1.1"