Setup requirements not consistent
Nobody has claimed this yet.
- Dominant language
- C
- Stars
- 1.2k
- Forks
- 267
- Avg merge
- 42m
- Merged PRs (30d)
- 2
Description
I tried downloading pynacl and all the requirements with pip3 download which downloaded the following packages: pynacl, six, cffi, and pycparser (required from cffi).
However if I bundled these packages and moved to a machine that did not have internet access and tried to install (via pip3 install --no-index -f <package_dir> pynacl) from the local wheels it will fail because the install requires a different set of packages: setuptools, wheel, and cffi.
I am assuming from the comment in the pyproject.toml that the issue is the setup_requirements in setup.py don't match (they are empty in setup.py).
I also think it is strange that the pip install command is passing the --ignore-installed flag because I already do have setuptools and wheel installed but it is still trying to find the packages which it can't when not connected to the internet.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Compare setup.py's setup requirements with the comment in pyproject.toml, then reproduce the reported pip3 download and offline pip3 install --no-index -f <package_dir> pynacl flow. Done means the declared requirements are consistent and the bundled packages install successfully without internet access.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- build-system
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100