From c27550731d01beb81b8841213dd2f107a82bd6e0 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Mon, 15 Jun 2020 17:14:48 +0300 Subject: [PATCH] Require py>=1.8.2 so we can rely on correct hash() of py.path.local on Windows See https://github.com/pytest-dev/py/blob/1.8.2/CHANGELOG#L4. Fixes #7357. --- changelog/7357.trivial.rst | 1 + setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog/7357.trivial.rst diff --git a/changelog/7357.trivial.rst b/changelog/7357.trivial.rst new file mode 100644 index 000000000..f0f9d035d --- /dev/null +++ b/changelog/7357.trivial.rst @@ -0,0 +1 @@ +py>=1.8.2 is now required. diff --git a/setup.cfg b/setup.cfg index 8749334f8..3e5cfa1f8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -45,7 +45,7 @@ install_requires = more-itertools>=4.0.0 packaging pluggy>=0.12,<1.0 - py>=1.5.0 + py>=1.8.2 toml atomicwrites>=1.0;sys_platform=="win32" colorama;sys_platform=="win32"