qizhiyi / sqlalchemy-migrate

Automatically exported from code.google.com/p/sqlalchemy-migrate
MIT License
0 stars 0 forks source link

pip installing sqlalchemy-migrate fails with distribute 0.6.24 #131

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
distribute 0.6.23 was released on 2011-09-22 with this fix:

  https://bitbucket.org/tarek/distribute/issue/208

With this fix, this shows True:

  print "0.7.1-doc-html > 0.7.1? %s" % (parse_version('0.7.1-doc-html') > parse_version('0.7.1'),)

So that when you do e.g.

  $> virtualenv t
  $> . ./t/bin/activate
  $> pip install sqlalchemy-migrate

it finds this link:

  http://sqlalchemy-migrate.googlecode.com/files/sqlalchemy-migrate-0.7.1-doc-html.tar.gz

and tries to install it because it thinks it's the newest:

Downloading sqlalchemy-migrate-0.7.1-doc-html.tar.gz (112Kb): 112Kb downloaded
  Running setup.py egg_info for package sqlalchemy-migrate
    Running command python setup.py egg_info
    Traceback (most recent call last):
      File "<string>", line 14, in <module>
    IOError: [Errno 2] No such file or directory: '/home/markmc/projects/openstack/git/nova/.test-venv/build/sqlalchemy-migrate/setup.py'

Full log attached

Looks like sqlalchemy-migrate needs a better naming scheme for its doc tarballs

Thanks to Derek Higgins for a lot of the debugging on this

Original issue reported on code.google.com by mark...@gmail.com on 25 Oct 2011 at 1:17

Attachments:

GoogleCodeExporter commented 8 years ago
I have deleted the download to solve this issue temporarily. We should migrate 
to readthedocs anyway, it provides all formats by itself

Original comment by do...@dev.si on 25 Oct 2011 at 1:49

GoogleCodeExporter commented 8 years ago
Thanks

Original comment by mark...@gmail.com on 25 Oct 2011 at 2:50

GoogleCodeExporter commented 8 years ago
next release will have another naming scheme for doc tarballs 
(sqlalchemy-migrate-doc-html-0.x.tar.gz)

Original comment by jan.ditt...@gmail.com on 28 Oct 2011 at 7:29

GoogleCodeExporter commented 8 years ago
the doc tarball for release 0.7.2 is named 
sqlalchemy-migrate-html-doc-0.7.2.tar.gz which should not be picked up.

Original comment by jan.ditt...@gmail.com on 1 Nov 2011 at 9:01