energyquantified / eq-python-client

Python library for Energy Quantified's Time Series API.
https://energyquantified-python.readthedocs.io/
Apache License 2.0
15 stars 2 forks source link

Be less strict about the requests version #47

Closed jonmd closed 2 years ago

jonmd commented 2 years ago

The energyquantified library should work with almost any requests v2 (last breaking change was v2.3.0). So, perhaps adjust the rules to always install latest v2:

setuptools.setup(
    install_requires=['requests>=2.3.0,<3']
)