This is an automated email from the ASF dual-hosted git repository.
awong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new f24ec6a python: pin pytest-runner to <5.3.0
f24ec6a is described below
commit f24ec6a7757af421f6da3e5f4b93f3a6761d23bb
Author: Andrew Wong <[email protected]>
AuthorDate: Tue Feb 16 17:17:59 2021 -0800
python: pin pytest-runner to <5.3.0
Per https://github.com/pytest-dev/pytest-runner/blob/v5.3.0/CHANGES.rst,
version 5.3.0 started requiring python 3.6 or higher, which is above the
minimum supported for Kudu. So, this pins the version to below 5.3.0.
Change-Id: I54fe40b0a6e56f74c4a3d7ce2d336d25ce6a33e2
Reviewed-on: http://gerrit.cloudera.org:8080/17074
Tested-by: Kudu Jenkins
Reviewed-by: Grant Henke <[email protected]>
---
python/setup.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/python/setup.py b/python/setup.py
index a09f7a9..86fe70b 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -191,7 +191,10 @@ setup(
'clean': clean,
'build_ext': build_ext
},
- setup_requires=['pytest-runner'],
+ # pytest-runner 5.3.0 [1] started requiring python 3.6 or later.
+ #
+ # 1. https://github.com/pytest-dev/pytest-runner/blob/v5.3.0/CHANGES.rst
+ setup_requires=['pytest-runner <5.3.0'],
# Note: dependencies in tests_require should also be listed in
# requirements.txt so that dependencies aren't downloaded at test-time