Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ language: "python"
python: "2.7"

before_install:
- "pip install setuptools flake8"
- "pip2 install setuptools flake8"

install:
- "python setup.py develop"
- "python2 setup.py develop"
- "git config user.email 'foo@bar.com'"
- "git config user.name 'Foo Bar'"

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@ If you have Ansible installed then you already have all of the dependencies you

# Pick an installation method that agrees with you.

pip install ansigenome
pip2 install ansigenome
easy_install ansigenome

# If you want to live on the edge...

git clone https://github.com/nickjj/ansigenome
cd ansigenome ; sudo python setup.py develop
cd ansigenome ; sudo python2 setup.py develop


Quick start
Expand Down
2 changes: 1 addition & 1 deletion bin/ansigenome
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2

import os
import sys
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2

import sys

Expand All @@ -7,7 +7,7 @@
except ImportError:
print "Ansigenome needs setuptools in order to build. " + \
"Install it using your package manager " + \
"(usually python-setuptools) or via pip (pip install setuptools)."
"(usually python-setuptools) or via pip (pip2 install setuptools)."
sys.exit(1)

setup(name="ansigenome",
Expand Down