Update the pytest version to >=4.4 as eth2spec

This commit is contained in:
Hsiao-Wei Wang 2020-08-27 16:12:31 +08:00
parent 6289664260
commit 458166af83
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
ruamel.yaml==0.16.5 ruamel.yaml==0.16.5
eth-utils==1.6.0 eth-utils==1.6.0
pytest==3.6.1 pytest>=4.4

View File

@ -6,6 +6,6 @@ setup(
install_requires=[ install_requires=[
"ruamel.yaml==0.16.5", "ruamel.yaml==0.16.5",
"eth-utils==1.6.0", "eth-utils==1.6.0",
"pytest==3.6.1", "pytest>=4.4",
] ]
) )