Skip to content

Commit e7a7d97

Browse files
authored
Fix master build (#3249)
Fix master branch build failures: - downgrade iniconfig version to fix broken gremlin-console tests due to pytest bringing in iniconfig version 2.0 which requires python 3.10 (we are building with python 3.9) - exclude commons-logging dependency from httpclient to resolve version conflict between gremlin-core and gremlin-console dependency trees Also re-generated feature tests as they were missing some changes.
1 parent f502941 commit e7a7d97

File tree

4 files changed

+216
-210
lines changed

4 files changed

+216
-210
lines changed

gremlin-console/src/test/python/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
tests_require=[
3333
'pytest>=4.6.4,<7.2.0',
3434
'mock>=3.0.5,<5.1.0',
35-
'pexpect==4.9.0'
35+
'pexpect==4.9.0',
36+
'iniconfig<2.0.0'
3637
]
3738
)

0 commit comments

Comments
 (0)