canvas icon indicating copy to clipboard operation
canvas copied to clipboard

forgot to push files while uploading to pypi

Open Psycojoker opened this issue 13 years ago • 2 comments

Ohai,

You forgot to do a "stdist" before pushing the release to pypi, therefor pip/easy_install can't download it :/

A correct command could be:

python setup.py sdist upload

Have a nice day,

Psycojoker avatar Jun 09 '12 11:06 Psycojoker

I think I have done it now. Can you check?

mdipierro avatar Jun 14 '12 17:06 mdipierro

It's good now, files are uploaded, but we have a new bug now (and I think it's my fault).

(ve)psycojoker@dolgoff /tmp/canvas pip install canvas
Downloading/unpacking canvas
  Downloading canvas-0.1.tar.gz
  Running setup.py egg_info for package canvas
    Traceback (most recent call last):
      File "<string>", line 14, in <module>
      File "/tmp/canvas/ve/build/canvas/setup.py", line 11, in <module>
        long_description=open("README.md").read(),
    IOError: [Errno 2] No such file or directory: 'README.md'
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 14, in <module>

  File "/tmp/canvas/ve/build/canvas/setup.py", line 11, in <module>

    long_description=open("README.md").read(),

IOError: [Errno 2] No such file or directory: 'README.md'

----------------------------------------
Command python setup.py egg_info failed with error code 1 in /tmp/canvas/ve/build/canvas
Storing complete log in /home/psycojoker/.pip/pip.log

Btw, if you want to test, do this in a dir:

virtualenv --no-site-packages --distribute ve
source ve/bin/activate
pip install canvas

And if you want to get out of the virtualenv:

deactivate

Psycojoker avatar Jun 14 '12 18:06 Psycojoker