In fresh 0.5.1 sources sqlalchemy.__version__ shows 0.4.6, should be 0.5.1

Issue #1288 resolved
Former user created an issue

Steps to reproduce:

  1. Download SQLAlchemy-0.5.1.tar.gz either from SourceForge or from Cheeseshop.
  2. tar zxvf it
  3. In ipython:

    In 1: import sys,os

    In 2: sys.path.append('/home/iz/soft/SQLAlchemy-0.5.1/lib/')

    In 3: import sqlalchemy

    In 4: sqlalchemy.version Out4: '0.4.6'

Comments (2)

  1. Mike Bayer repo owner

    this is the natural behavior of setuptools. try instead:

    sys.path.insert('/home/iz/soft/SQLAlchemy-0.5.1/lib/')
    
  2. Log in to comment