4 Commits

2 changed files with 9 additions and 3 deletions

View File

@@ -90,6 +90,7 @@ footer {
font-size: 75%;
color: #999;
padding: 0 1em;
margin-top: 15px;
}
table {
@@ -98,10 +99,15 @@ table {
table, th, td {
padding: 5px;
border: 1px solid #222;
border: 1px solid #ccc;
margin-bottom: 15px;
}
th {
background: #eee;
}
blockquote {
background-color: rgba(120, 120, 120, 0.1);
padding: 1px 10px;
}

View File

@@ -8,8 +8,8 @@ HERE = os.path.dirname(os.path.abspath(__file__))
def extract_requires():
"""Get pinned requirements from requirements.in."""
with open(os.path.join(HERE, 'requirements/requirements.in'), 'r') as reqs:
"""Get pinned requirements from requirements.txt."""
with open(os.path.join(HERE, 'requirements/requirements.txt'), 'r') as reqs:
return [line.split(' ')[0] for line in reqs if not line[0] in ('-', '#')]