-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't pin dependencies #20
Comments
PyPi seems to be a popular target for scumbags at the moment, so I am reluctant to have an open ended range if it can be avoided. |
I would allow a rather open intervall ( take a look at the numpy recommendations, they do latest +3 (minor) versions) |
One recommended approach, specially for libraries, is to use setuptools
|
@bpedersen2: I've done what @danesss suggested and loosened the dependencies in the setup.py. |
As this is a library, please don' hard-pin dependencies, instead use suitable ranges.
Especially: requests>=2.27.1 instead of requests==2.27.1 unless 2.28+ is really breaking yuos_query as e.g. has other deps that require >=2.28.1 resulting in conflict
The text was updated successfully, but these errors were encountered: