You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2020/12/02 01:32:20 UTC

[tinkerpop] branch master updated: Fixed console test issues related to python dependencies upgrading quietly behind the scenes CTR

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a55978  Fixed console test issues related to python dependencies upgrading quietly behind the scenes CTR
     new c6f88be  Merge branch '3.4-dev'
8a55978 is described below

commit 8a559783f15c39d811b01f2ac75c2c6e8926c1a4
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Dec 1 13:44:28 2020 -0500

    Fixed console test issues related to python dependencies upgrading quietly behind the scenes CTR
---
 gremlin-console/src/test/python/setup.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gremlin-console/src/test/python/setup.py b/gremlin-console/src/test/python/setup.py
index d226fc7..4914991 100644
--- a/gremlin-console/src/test/python/setup.py
+++ b/gremlin-console/src/test/python/setup.py
@@ -26,11 +26,12 @@ setup(
     name='gremlinconsoletest',
     test_suite="tests",
     setup_requires=[
-        'pytest-runner',
+        'pytest-runner==5.2',
+        'importlib-metadata<3.0.0'
     ],
     tests_require=[
-        'pytest==4.6.4',
-        'mock',
-        'pexpect'
+        'pytest>=4.6.4,<5.0.0',
+        'mock>=3.0.5,<4.0.0',
+        'pexpect==4.8.0'
     ]
 )