Skip to content

Commit

Permalink
rename pip-requirements.txt into requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
thefab committed Nov 15, 2016
1 parent 17945e2 commit 528d385
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include pip-requirements.txt
include requirements.txt
2 changes: 1 addition & 1 deletion doc-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r pip-requirements.txt
-r requirements.txt

Sphinx>=1.3
sphinx_rtd_theme>=0.1.8
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
except IOError:
LONG_DESCRIPTION = DESCRIPTION

with open('pip-requirements.txt') as reqs:
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n')
if (line and not line.startswith('--')) and (";" not in line)]
Expand Down
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r pip-requirements.txt
-r requirements.txt

nose>=1.3
coverage==3.7.1 ; python_version >= '3.2' and python_version < '3.3'
Expand Down

0 comments on commit 528d385

Please sign in to comment.