Skip to content

Commit

Permalink
Merge pull request #579 from pgiraud/pyramid_version
Browse files Browse the repository at this point in the history
Fix the pyramid version
  • Loading branch information
Pierre GIRAUD committed Apr 20, 2015
2 parents 6036ead + a5f2bab commit c5f7c5b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ before_install:
install:
- virtualenv env
- source env/bin/activate
- pip install -r requirements.txt
- python setup.py develop
- sudo service postgresql restart
- sudo -u postgres createuser www-data --no-superuser --no-createdb --no-createrole
- sudo -u postgres createdb -O www-data osmtm
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To create a virtual Python environment:
cd osm-tasking-manager2
sudo easy_install virtualenv
virtualenv --no-site-packages env
./env/bin/pip install -r requirements.txt
./env/bin/python setup.py develop

*Tip: if you encounter problems installing `psycopg2` especially on Mac, it is recommended to follow advice proposed [here](http://stackoverflow.com/questions/22313407/clang-error-unknown-argument-mno-fused-madd-python-package-installation-fa).*

Expand Down
2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
CHANGES = open(os.path.join(here, 'CHANGELOG.md')).read()

requires = [
'pyramid==1.6-dev',
'pyramid==1.6a1',
'pyramid_mako==1.0.2',
'SQLAlchemy==0.9.9',
'transaction',
Expand Down

0 comments on commit c5f7c5b

Please sign in to comment.