hmrc / service-manager

A python tool to manage developing and testing with lots of microservices
Apache License 2.0
58 stars 37 forks source link

Relax requirements of setup.py #91

Open pakal opened 5 years ago

pakal commented 5 years ago

The setup indicates :

install_requires=['requests==2.8.1','pymongo==3.0.1','bottle==0.12.4','pytest==2.5.2','argcomplete==0.8.1']

But this makes servicemanager unusable with package managers like Poetry, in projects where other dependencies require newer versions of "requests" for example.

Maybe a ">=" would be well sufficient here ?