From 93044c12e479de843bb7a453af1c6ef902c504a6 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Sun, 19 Jun 2022 17:29:56 +0200 Subject: [PATCH] Fix tests suite on Python 3.5.{0,1}. (#85) Everything actually works just fine, it's just that the latest pathlib2 release dropped support for Python 3.5.{0,1} without indicating it in their metadata... --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index af2f4ea..8bfb3d7 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -4,6 +4,7 @@ importlib-metadata<3.0; python_version < '3.6' packaging<21.0; python_version < '3.6' pytest~=4.6; python_version < '3.6' pytest>=4.6; python_version >= '3.6' +pathlib2 < 2.3.7; python_version == '3.5.0' or python_version == '3.5.1' typing >= 3.7.4; python_version < '3.5' mypy_extensions >= 0.3.0 typing_extensions >= 3.7.4; python_version >= '3.6'