-
Notifications
You must be signed in to change notification settings - Fork 150
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
Runtime dependencies are not (correctly) specified #157
Comments
Thanks for creating the issue. We sadly cannot add As such, the newly provided |
If we could solve #156, then
So the problem is that
Conda is becoming a bit of an issue for users engaged in commercial activities (i.e. enterprises) because they've changed their terms of service. I'd be nice to have a proper setup path using standard Python packages. 🙂 |
I'm not a big fan of adding |
Ah, yes, I see. 🤔 |
This issue had no activity for 6 months. It will be closed in 2 weeks unless there is some new activity. Is this issue already resolved? |
* connector doc * typo
torch-sparse
has a number of runtime dependencies, but onlyscipy
(without a version specifier) is specified insetup.py
viainstall_requires
. This breaks dependency resolution and makes it hard to usetorch-sparse
in a properly set up project.I've identified the following dependencies:
numpy
scipy
torch
torch-scatter
typing-extensions>=3.7.4; python_version < '3.8'
(becauseFinal
was added to thetyping
package in Python v3.8 and totyping-extensions
in v3.7.4)You should also determine proper version specifiers for the other dependencies, so that a dependency resolver can correctly determine the versions of all packages to be installed.
The text was updated successfully, but these errors were encountered: