Skip to content

Commit

Permalink
Make requires.io stop mentioning markdown being outdated
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Sep 30, 2018
1 parent 1f51ab2 commit ba8210a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -4,7 +4,7 @@ Pillow>=2.4.0
python-dateutil>=2.6.0
docutils>=0.13
mako>=1.0.0
Markdown>=2.4.0,<3.0.0
Markdown>=2.4.0,<3.0.0 # rq.filter: <3.0.0
unidecode>=0.04.16
lxml>=3.3.5
Yapsy>=1.11.223
Expand Down
1 change: 0 additions & 1 deletion scripts/release
Expand Up @@ -154,4 +154,3 @@ echo " * Create a GitHub release"
echo " * Update GitHub Issues milestones"
echo " * Update Nikola’s website"
echo " * Send out announcement e-mails"
echo " * Update AUR PKGBUILDs"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@


with open('requirements.txt', 'r') as fh:
dependencies = [l.strip() for l in fh]
dependencies = [l.strip().split("#")[0] for l in fh]

extras = {}

Expand Down

0 comments on commit ba8210a

Please sign in to comment.