Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Setting version requirement for sqlalchemy
Browse files Browse the repository at this point in the history
version 0.9 is not compatible

fixes #14
  • Loading branch information
Tristramg committed Feb 16, 2014
1 parent 21e5c1f commit f025042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

from setuptools import setup, find_packages, Extension
setup(name='Osm4routing',
version='1.0.5',
version='1.0.6',
author= 'Tristram Graebener',
author_email = 'tristramg@gmail.com',
description = 'A simple tool to parse OpenStreetMap data to use them for routing',
license = 'GPLv3',
url = 'http://github.com/Tristramg/osm4routing/',
install_requires = ['sqlalchemy', 'setuptools-git', 'geoalchemy'],
install_requires = ['sqlalchemy <0.9', 'setuptools-git', 'geoalchemy'],
py_modules = ['osm4routing', 'osm4routing_xml'],

ext_modules = [
Expand Down

0 comments on commit f025042

Please sign in to comment.