Skip to content
Snippets Groups Projects
Commit da24fd77 authored by Nathan Hertz's avatar Nathan Hertz
Browse files

setup.py changes: added a test req and added req versions

parent 885441cd
No related branches found
No related tags found
No related merge requests found
......@@ -8,11 +8,12 @@ VERSION = open('src/wf_monitor/_version.py').readlines()[-1].split()[-1].strip("
README = Path('README.md').read_text()
requires = [
'pika',
'pendulum'
'pika=1.1',
'pendulum=2.1.2'
]
tests_require = [
'pytest>=5.4,<6.0'
'pytest>=5.4,<6.0',
'pytest-mock=3.3.1'
]
setup(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment