virtualvinodh / aksharamukha-python

Aksharamukha Python Library
GNU Affero General Public License v3.0
43 stars 15 forks source link

Fixed version of Requests dependency causes dependency hell. #2

Closed blake-sc closed 2 years ago

blake-sc commented 2 years ago

At the moment requirements.txt uses fixed version dependencies:

Requests==2.20.1
pykakasi==2.0.6

These should be changed to minimum version dependencies so pip can find a version of requests that satisfies other packages too:

Requests>=2.20.1
pykakasi>=2.0.6

From what I can tell this would not break anything.

virtualvinodh commented 2 years ago

This has been fixed. Thanks for letting me know!