Matt Davis

Results 804 comments of Matt Davis

> What do you mean? pip install from Pipfile? Does pip do that? No I mean pip install the same thing (pip instead of pipenv on the CLI) and see...

Its a debugging technique, pull the specifier from the lock file of the specific requirement with an issue, or even run `pipenv requirements` to generate a requirements file and try...

Well then it is a dependency resolution error -- something in your specifiers don't allow resolution, but to me it looked more like you were missing a system dependency to...

The issue I ran into is https://pypi.org/project/scikit-surprise/1.1.4/ doesn't support python 3.13 which you recently bumped your specifier for Python in your Pipfile from 3.12 t o 3.13. If I downgrade...

Well I've shown this morning that using python 3.12 does in fact resolve the issue on a normal ubuntu install with CUDA -- but can you check that you ran...

Well I can resolve your dependencies fine with python 3.12 -- so I don't know what to tell you. You haven't proven it is a pipenv issue, you are asking...

``` matteius@matteius-Ryzen9:~/pipenv-triage/issue-6388$ pipenv lock --dev Creating a virtualenv for this project Pipfile: /home/matteius/pipenv-triage/issue-6388/Pipfile Using /home/matteius/.pyenv/versions/3.12.9/bin/python3.12.9 to create virtualenv... ⠙ Creating virtual environment...created virtual environment CPython3.12.9.final.0-64 in 138ms creator CPython3Posix(dest=/home/matteius/Envs/issue-6388-kICj8pjy, clear=False,...

Under python 3.13: ``` tteius@matteius-Ryzen9:~/pipenv-triage/issue-6388$ pipenv run pip install lib50 Collecting lib50 Downloading lib50-3.0.12-py3-none-any.whl.metadata (964 bytes) Collecting attrs=18.1 (from lib50) Downloading attrs-20.3.0-py2.py3-none-any.whl.metadata (10 kB) Collecting packaging (from lib50) Using cached...

Some sub-dependency of something you are requiring that is failing to build on default python3.13 is what I found -- you should have a lot more context about the libraries...

When resolver is allowed to search star it is given the permission to search all history to find a possibly specifier combination that doesn't violate constraints. When there are a...