python - Trouble downloading most recent version of my package from pip -


i started out using pypi packaging of few tools useful in everyday life, i'm having trouble making sure can download recent version of package.

the package in question pyfuzz , upgraded version 0.1.1, reason when pip install it, --upgrade flag can pull down 0.1.0.

the file recognized on pypi site (see: https://pypi.python.org/pypi/pyfuzz/0.1.1) , if try upload again error saying i've uploaded 0.1.1.

this setup file:

try:     setuptools import setup except importerror:     distutils.core import setup setup(     name="pyfuzz",     version="0.1.1",     author="slater victoroff",     author_email="slater.r.victoroff@gmail.com",     packages=["pyfuzz"],     url="http://pypi.python.org/pypi/pyfuzz/",     license="license.txt",     description="simple fuzz testing unit tests, i18n, , security",     long_description=open("readme.txt").read(),     install_requires=[         "lxml >= 2.3.2",         "requests >= 1.2.3",         "numpy >= 1.6.1",         "cssselect >= 0.8"     ], ) 

and uploaded using python setup.py sdist upload doing silly here? appreciated.

it looks pypi index hasn't been updated yet:

https://pypi.python.org/simple/pyfuzz/

(output @ time of writing):

pyfuzz-0.1.0.tar.gz 

this known issue pypi - package indexes , mirrors actual packages out of sync, if not down alltogether. other way round though - index listing version package mirrors don't have yet. http://www.pypi-mirrors.org/ may useful check mirror freshness.

so it's not mistake on side, failure of pypi. wait, , should update , resolve itself.

what can in meantime install recent version of package explicitely giving url source tarball:

pip install https://pypi.python.org/packages/source/p/pyfuzz/pyfuzz-0.1.1.tar.gz 

Comments

Popular posts from this blog

plot - Remove Objects from Legend When You Have Also Used Fit, Matlab -

java - Why does my date parsing return a weird date? -

Need help in packaging app using TideSDK on Windows -