0.15 published a post1 py2 wheel, but did not for py3, which results in pipenv failing to create a lockfile configuration for py3 projects that depend on it.
0.15 py3 wheel is working correct and fine there is no need for a release
please attach the error details ?
There's a similar problem with 0.15.1 The list of dists has 0.15.1 wheel and 0.15.1.post1 sdist.
0.15.1
0.15.1.post1
docutils-0.15.1-post1.tar.gz docutils-0.15.1-py2-none-any.whl
So when you try to install it under Python 3 it cannot find it.
$ python3 -m pip install docutils==0.15.1 Collecting docutils==0.15.1 ERROR: Could not find a version that satisfies the requirement docutils==0.15.1 (from versions: 0.3, 0.3.5, 0.3.7, 0.3.9, 0.4, 0.5, 0.6, 0.7, 0.8, 0.8.1, 0.9, 0.9.1, 0.10, 0.11, 0.12, 0.13.1, 0.14rc1, 0.14rc2, 0.14, 0.15, 0.15.1.post1) ERROR: No matching distribution found for docutils==0.15.1
Also, because of this, if the version is not pinned it always selects sdist which is 0.15.1.post1
sdist
$ python -m pip install docutils Collecting docutils Downloading https://files.pythonhosted.org/packages/d4/12/6c3fd74a590c7327c98cae008c11d536029fa9cd7924de477e8cb8804186/docutils-0.15.1-post1.tar.gz (1.7MB)
Log in to post a comment.
0.15 py3 wheel is working correct and fine
there is no need for a release
please attach the error details ?
There's a similar problem with 0.15.1
The list of dists has
0.15.1wheel and0.15.1.post1sdist.So when you try to install it under Python 3 it cannot find it.
Also, because of this, if the version is not pinned it always selects
sdistwhich is0.15.1.post1