Call the requirement.txt file from the current directory, not maintainer dir.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-07-02 11:19:52 +00:00
parent 3cf4f13325
commit bc2acabe55
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ def get_current_dir():
def get_deps_reqs():
"""Get dependencies from the pip requirements.txt file."""
requirements_file = os.path.join(get_current_dir(), 'requirements.txt')
requirements_file = os.path.join(os.getcwd(), 'requirements.txt')
dependency_links = []
install_requires = []
with open(requirements_file) as pipfile: