Skip to content

Commit

Permalink
Loosen test dependency version constraints (#2568)
Browse files Browse the repository at this point in the history
Only use a lower bound (not sure if the lower bound actually means
anything with regards to what Manticore _requires_, but better keep it
around just in case)
  • Loading branch information
ekilmer committed Jul 25, 2022
1 parent 8f7eff8 commit 2c50966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -29,7 +29,7 @@ def rtd_dependent_deps():
# Development dependencies without keystone
dev_noks = (
native_deps
+ ["coverage", "Sphinx", "pytest==5.3.0", "pytest-xdist==1.30.0", "pytest-cov==2.8.1", "jinja2"]
+ ["coverage", "Sphinx", "pytest>=5.3.0", "pytest-xdist>=1.30.0", "pytest-cov>=2.8.1", "jinja2"]
+ lint_deps
+ auto_test_deps
)
Expand Down

0 comments on commit 2c50966

Please sign in to comment.