From ace25cda3c259da454882f4b90246a89d13fe8dc Mon Sep 17 00:00:00 2001 From: "C. Titus Brown" Date: Sun, 5 Mar 2023 11:46:55 -0800 Subject: [PATCH] MRG: update version of screed to >= 1.1,<2 (#2415) Fixes https://github.com/sourmash-bio/sourmash/issues/2394. The main update in screed from 1.0.5 to 1.1 was https://github.com/dib-lab/screed/pull/90, which closes an unclosed file handle. This PR also puts an upper bound on the screed version. --------- Co-authored-by: Luiz Irber Co-authored-by: Luiz Irber --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dc04e815f8..85bfa56b3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,7 +70,7 @@ classifiers = [ ] dependencies = [ - "screed>=1.0.5", + "screed>=1.1.2,<2", "cffi>=1.14.0", "numpy", "matplotlib",