Open Meorge opened 1 year ago
Someone was able to point out the problem to me: the torch requirement in pyproject.toml
means that it can't go past a major version number (aka 2.0.0). I was trying to install Objection on Python 3.11, which seemed to cause some problems overall - in the coming days I might look into making it compatible with more recent versions of Python.
its also not compatible with 3.9 despite the readme saying 3.8 and above have worked
`INFO: pip is looking at multiple versions of objection-engine to determine which version is compatible with other requirements. This could take a while.
ERROR: Package 'objection-engine' requires a different Python: 3.9.6 not in '<3.11,>=3.10'`
I'm trying to install Objection into another project, and getting the following output:
As far as I can tell, Objection itself only requires
torch
to be greater than version1.13.1
. I have no idea where thetorch<2.0.0
requirement is coming from; I even went through all of the dependencies in thepyproject.toml
file and searched their dependencies to see if I could find it, but had no luck. Maybe this is just something I'm spacing on?