I have a package on PyPI. Latest version is 0.1.6
.
Unfortunately, I cannot install it via pip:
$ pip install sexpr==0.1.6
Could not find a version that satisfies the requirement sexpr==0.1.6 (from versions: 0.1.6.linux-x86_64, 0.1.2, 0.1.3, 0.1.4, 0.1.5)
No matching distribution found for sexpr==0.1.6
Package is obviously there:
$ pip search sexpr
sexpr (0.1.6) - S-expression toolkit for Python
INSTALLED: 0.1.5
LATEST: 0.1.6
Package was compiled and uploaded in a standard way:
$ python3 setup.py sdist bdist_wheel
...
$ twine upload dist/*
...
Am I missing something? Thanks.
*Package requires Python 3 and up.
Update
Directory dist/
(after compilation from today, not the original upload) contains:
sexpr-0.1.6-py3-none-any.whl sexpr-0.1.6-py3.6.egg sexpr-0.1.6.tar.gz
I've uploaded output of the python3 setup.py sdist bdist_wheel
to a pastebin
here.
Update 2
Ok, it seems that source-code archive is badly formatted. No idea why, but it looks like something related to virtualenv (which I was using at the time).