[Distutils] Re: PyPI not showing latest version?

2018-06-13 Thread Ernest W. Durbin III
On June 13, 2018 at 11:03:05 AM, Vinay Sajip via Distutils-SIG (distutils-sig@python.org) wrote: I just uploaded python-gnupg 0.4.3 to PyPI using Twine. Search still shows the previous version: https://pypi.org/search/?q=python-gnupg => 0.4.2 Search index updates are not immediate and are

[Distutils] Re: PyPI not showing latest version?

2018-06-13 Thread Thomas Kluyver
Since the old PyPI was shut down, I have noticed that it takes a few minutes for new package updates to show up. I assume that the new site is more heavily cached. On Wed, Jun 13, 2018, at 4:01 PM, Vinay Sajip via Distutils-SIG wrote: > I just uploaded python-gnupg 0.4.3 to PyPI using Twine.

[Distutils] Re: PyPI not showing latest version?

2018-06-13 Thread Vinay Sajip via Distutils-SIG
It's coming up correctly on both the search page and in pip install now :-) $ curl -I https://pypi.org/simple/python-gnupg/HTTP/1.1 200 OKCache-Control: max-age=600, publicContent-Security-Policy: default-src 'none'; sandbox allow-top-navigationContent-Type: text/html; charset=UTF-8ETag:

[Distutils] Re: PyPI not showing latest version?

2018-06-13 Thread Joni Orponen
On Wed, Jun 13, 2018 at 5:01 PM, Vinay Sajip via Distutils-SIG < distutils-sig@python.org> wrote: > I just uploaded python-gnupg 0.4.3 to PyPI using Twine. Search still shows > the previous version: > > https://pypi.org/search/?q=python-gnupg => 0.4.2 > > However, clicking on the link brings up

[Distutils] PyPI not showing latest version?

2018-06-13 Thread Vinay Sajip via Distutils-SIG
I just uploaded python-gnupg 0.4.3 to PyPI using Twine. Search still shows the previous version: https://pypi.org/search/?q=python-gnupg => 0.4.2 However, clicking on the link brings up the page for the latest version: https://pypi.org/project/python-gnupg/ => 0.4.3 But pip install is also

[Distutils] Re: Dependency resolution in pip

2018-06-13 Thread Paul Moore
On 13 June 2018 at 10:23, wrote: > I recently stumbled into a worrying problem with pip. I found out that doing > "pip install pusher requests" installs urllib3 v1.23 as a dependency even > though requests specifically restricts the version to lower than 1.23. Then > if instead I do "pip install

[Distutils] Dependency resolution in pip

2018-06-13 Thread alex . gronholm
I recently stumbled into a worrying problem with pip. I found out that doing "pip install pusher requests" installs urllib3 v1.23 as a dependency even though requests specifically restricts the version to lower than 1.23. Then if instead I do "pip install requests pusher" it installs urllib3 v1.22