Install local wheel package missing path in lock file
See original GitHub issueIn my program I use a local wheel, I’m in the process to upgrading from py 3.7 to py 3.11 and I had some trouble installing a local wheel (hash mismatch) bu I was able to install it after the first lock.
Then I noticed wheel path is missing in the lock file, is that a normal behavior?
This is my actual pipfile
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
pyinstaller = "5.6.2"
[packages]
python-dotenv = "==0.21.0"
requests = "==2.28.1"
flask = "==2.2.2"
flask-cors = "==3.0.10"
flask-caching = "==2.0.1"
flask-jwt-extended = "==4.4.4"
python-dateutil = "==2.8.2"
peewee = "==3.15.4"
pysqlite3 = {path = "./../_res/wheels/pysqlite3-0.4.7-cp311-cp311-win_amd64.whl"}
[requires]
python_version = "3.11"
python_full_version = "3.11.0"
vs old one
Issue Analytics
- State:
- Created 10 months ago
- Comments:15
Top Results From Across the Web
Wheel installation fails when local path dependency introduced
Wheel installation fails when local path dependency introduced #4868 ... Exception trace thrown when invoking pip install of the .whl file.
Read more >12. Creating packages — Level Up Your Python - GitHub Pages
To install a local package, use: pip install . This will copy the files into site-packages. If you want to actively develop a...
Read more >pip download - pip documentation v22.3.1
If a local path or file:// URL that's a directory, then look for archives in the directory listing. Links to VCS project URLs...
Read more >Third-party dependencies - Pants build
Instead, Pants understands exactly which dependencies every file in your project needs, ... [python].resolves to the path of your lockfile(s). Also set
Read more >Environments with a Shared Package Installation Directory ...
these files are stored in a user-level directory, e.g. under ~/.local/state/python3.10/envs/default/{pyproject,lockfile}; package(s) ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Confirmed: its a windows issue.
It’s plausible that there are some python 3.11 bugs in pipenv that haven’t yet been fully realized, this may be one of them but that is surely perplexing.