Closed
Bug 1033830
Opened 10 years ago
Closed 10 years ago
python setup.py install fails
Categories
(Socorro :: Infra, task)
Tracking
(Not tracked)
RESOLVED
FIXED
93
People
(Reporter: bramwelt, Assigned: bramwelt)
Details
Running `python setup.py install` gives the following error:
error in socorro setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers
This is because URLs are listed in the file, and `install_requires`. Adding `x.startswith('http')' resolves this issue, but may not be acceptable solution.
Using `dependency_links` may resolve this issue as well.
Comment 1•10 years ago
|
||
Commit pushed to master at https://github.com/mozilla/socorro
https://github.com/mozilla/socorro/commit/1918b73b83cf160c0abf82eddb3aaff7d72e77cd
fix bug 1033830 - Add `dependency_links` to `setup.py`
- Updates crontabber to 0.11
- Fixes `setup.py install`
Updated•10 years ago
|
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Assignee: nobody → tbramwell
Updated•10 years ago
|
Target Milestone: --- → 93
You need to log in
before you can comment on or make changes to this bug.
Description
•