drudge icon indicating copy to clipboard operation
drudge copied to clipboard

`dev0` in release tag name makes installation more difficult

Open marekyggdrasil opened this issue 6 years ago • 2 comments

Searching for drudge gives results

$ pip search drudge
drudge (0.1.0.dev0)    - # drudge
drudge_parser (3.0.2)  - Naive parser for the Drudge Report

unfortunately it is not possible to install it

$ pip install drudge
Collecting drudge
  Could not find a version that satisfies the requirement drudge (from versions: )
No matching distribution found for drudge

my environment

$ python --version
Python 3.7.0
$ pip --version
pip 19.0.1 from /Users/username/snakepit/virtualenvs/mypy3.7/lib/python3.7/site-packages/pip (python 3.7)

I suspect it's because there's a dev0 in the release name, could that be the case? If yes would you @tschijnmo consider publishing a new release without dev0 in the tag so that pip can install it?

marekyggdrasil avatar Feb 11 '19 06:02 marekyggdrasil

Oh and in case if someone is looking for temp solution how to install, I used

pip install -e git://github.com/tschijnmo/[email protected]#egg=drudge

marekyggdrasil avatar Feb 11 '19 06:02 marekyggdrasil

Thank you for the feedback! The pip installation was a work-in-progress that was unfortunately never fully finished. Since the drudge stack has a lot of non-trivial dependencies, recently it has been containerized, which is documented at

https://tschijnmo.github.io/drudge/install.html

Hopefully this helps!

tschijnmo avatar Sep 25 '19 06:09 tschijnmo