Can't install of non-latest releases of packages from devpi.
I can't install releases of packages from devpi other than the latest release. All releases show up in the listening: $ devpi list package http: //devpi.corporate.com/orangetux/dev/+f/d15/d668a6cffc273/package-0.6.1-py2.py3-none-any.whl http: //devpi.corporate.com/orangetux/dev/+f/f9b/9f520a2c17633/package-0.6.0-py2.py3-none-any.whl http: //devpi.corporate.com/orangetux/dev/+f/7f1/5c7b906eace44/package-0.5.0-py2.py3-none-any.whl Installing version 0.6.1 goes without problem, but instaling an older release is not possible: $ pip install --upgrade --trusted-host devpi.corporate.com --find-links http ://devpi.corporate.com/dev --no-index package==0.6.0 Ignoring indexes: https://pypi.python.org/simple Collecting package==0.6.0 Could not find a version that satisfies the requirement package==0.6.0 ( from versions: 0.6.1) No matching distribution found for package==0.6.0 Is their something I'm missing?
Hi! You need to use: pip install -i http://devpi.corporate.com/orangetux/dev/+simple package==0.6.0 Regards, Florian Schulze On 12 Sep 2016, at 12:54, OrangeTux wrote:
I can't install releases of packages from devpi other than the latest release.
All releases show up in the listening: $ devpi list package http: //devpi.corporate.com/orangetux/dev/+f/d15/d668a6cffc273/package-0.6.1-py2.py3-none-any.whl http: //devpi.corporate.com/orangetux/dev/+f/f9b/9f520a2c17633/package-0.6.0-py2.py3-none-any.whl http: //devpi.corporate.com/orangetux/dev/+f/7f1/5c7b906eace44/package-0.5.0-py2.py3-none-any.whl
Installing version 0.6.1 goes without problem, but instaling an older release is not possible:
$ pip install --upgrade --trusted-host devpi.corporate.com --find-links http ://devpi.corporate.com/dev --no-index package==0.6.0 Ignoring indexes: https://pypi.python.org/simple Collecting package==0.6.0 Could not find a version that satisfies the requirement package==0.6.0 ( from versions: 0.6.1) No matching distribution found for package==0.6.0
Is their something I'm missing?
-- You received this message because you are subscribed to the Google Groups "devpi-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to devpi-dev+...@googlegroups.com. To post to this group, send email to devp...@googlegroups.com. Visit this group at https://groups.google.com/group/devpi-dev. For more options, visit https://groups.google.com/d/optout.
Tahnks. Solved my case. Op maandag 12 september 2016 13:19:35 UTC+2 schreef Florian Schulze:
Hi! You need to use: pip install -i http://devpi.corporate.com/orangetux/dev/+simple package==0.6.0 Regards, Florian Schulze On 12 Sep 2016, at 12:54, OrangeTux wrote:
I can't install releases of packages from devpi other than the latest release.
All releases show up in the listening: $ devpi list package http:// devpi.corporate.com/orangetux/dev/+f/d15/d668a6cffc273/package-0.6.1-py2.py3-none-any.whl http:// devpi.corporate.com/orangetux/dev/+f/f9b/9f520a2c17633/package-0.6.0-py2.py3-none-any.whl http:// devpi.corporate.com/orangetux/dev/+f/7f1/5c7b906eace44/package-0.5.0-py2.py3-none-any.whl
Installing version 0.6.1 goes without problem, but instaling an older release is not possible:
$ pip install --upgrade --trusted-host devpi.corporate.com --find-links http://devpi.corporate.com/dev --no-index package==0.6.0 Ignoring indexes: https://pypi.python.org/simple Collecting package==0.6.0 Could not find a version that satisfies the requirement package==0.6.0 ( from versions: 0.6.1) No matching distribution found for package==0.6.0
Is their something I'm missing?
-- You received this message because you are subscribed to the Google Groups "devpi-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to devpi-...@googlegroups.com <javascript:>. To post to this group, send email to dev...@googlegroups.com <javascript:>. Visit this group at https://groups.google.com/group/devpi-dev. For more options, visit https://groups.google.com/d/optout.
participants (2)
-
Florian Schulze
-
OrangeTux