Skip to content
This repository has been archived by the owner on Jun 29, 2020. It is now read-only.

Commit

Permalink
GoogleApiPython3x を editable (-e) でインストールする必要性は無い
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Aug 16, 2014
1 parent b0d4c8b commit 6aa5ae0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ django-bootstrap-form
honcho
beautifulsoup4
httplib2
-e git+https://github.com/enorvelle/GoogleApiPython3x.git@dd92ed3d676581f486521d66c6de88351a0e67fe#egg=google_api_python_client
git+https://github.com/enorvelle/GoogleApiPython3x.git@dd92ed3d676581f486521d66c6de88351a0e67fe#egg=google_api_python_client
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def read(filename):

def readlist(filename):
rows = read(filename).split("\n")
rows = [x.strip() for x in rows if x.strip() if not x.startswith('-e')]
rows = [x.strip() for x in rows if x.strip()]
return list(rows)


Expand Down

0 comments on commit 6aa5ae0

Please sign in to comment.