From 69bff59e3a8670259db63f092c0aa1d9164d785e Mon Sep 17 00:00:00 2001 From: Jordi Llonch Date: Sat, 23 May 2015 16:15:57 +1000 Subject: [PATCH] update dependencies --- dev-req.txt | 12 ++++++------ requirements.txt | 14 +++++++------- setup.py | 21 +++++++++++++-------- 3 files changed, 26 insertions(+), 21 deletions(-) diff --git a/dev-req.txt b/dev-req.txt index 43f27b4..a4b431f 100644 --- a/dev-req.txt +++ b/dev-req.txt @@ -1,7 +1,7 @@ -r requirements.txt -pyquery -docutils -mock -nose -pillow -pyscss \ No newline at end of file +pyquery==1.2.9 +docutils==0.12 +mock==1.0.1 +nose==1.3.6 +Pillow==2.7.0 +pyScss==1.3.4 diff --git a/requirements.txt b/requirements.txt index a00c87c..99248ff 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ fswrap==0.1.2 commando==0.3.4 -PyYAML==3.10 -Markdown==2.3.1 -MarkupSafe==0.18 -Pygments==1.6 -typogrify==2.0.0 -smartypants<1.8 -Jinja2==2.7.1 +PyYAML==3.11 +Markdown==2.6.2 +MarkupSafe==0.23 +Pygments==2.0.2 +typogrify==2.0.7 +smartypants==1.8.6 +Jinja2==2.7.3 diff --git a/setup.py b/setup.py index b404931..b08329c 100644 --- a/setup.py +++ b/setup.py @@ -118,16 +118,21 @@ setup(name=PROJECT, install_requires=( 'fswrap==0.1.2', 'commando==0.3.4', - 'PyYAML==3.10', - 'Markdown==2.3.1', - 'MarkupSafe==0.18', - 'Pygments==1.6', - 'typogrify==2.0.0', - 'smartypants<1.8', - 'Jinja2==2.7.1' + 'PyYAML==3.11', + 'Markdown==2.6.2', + 'MarkupSafe==0.23', + 'Pygments==2.0.2', + 'typogrify==2.0.7', + 'smartypants==1.8.6', + 'Jinja2==2.7.3' ), tests_require=( - 'nose', 'mock' + 'nose==1.3.6', + 'mock==1.0.1', + 'pyquery==1.2.9', + 'docutils==0.12', + 'Pillow==2.7.0', + 'pyScss==1.3.4' ), test_suite='nose.collector', include_package_data = True,