Skip to content

Commit

Permalink
Fix tests suite on Python 3.5.{0,1}.
Browse files Browse the repository at this point in the history
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...
  • Loading branch information
anntzer committed Jun 14, 2022
1 parent 01f1b91 commit a13ca9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test-requirements.txt
@@ -1,6 +1,7 @@
flake8; python_version >= '3.6'
flake8-bugbear; python_version >= '3.6'
pytest>=2.8; python_version >= '3.3'
pytest >= 2.8; python_version >= '3.3'
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

0 comments on commit a13ca9d

Please sign in to comment.