From 646e45b7e430b5374dc5145a65437d5809eeac29 Mon Sep 17 00:00:00 2001 From: Chris Evett Date: Thu, 7 Sep 2017 14:30:46 -0400 Subject: [PATCH] update dependencies so that make init will work; exclude ropeproject folder in gitignore (#1111) --- .gitignore | 3 ++- requirements-dev.txt | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index efee854dd..18026d60f 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,5 @@ build/ .idea/ *.swp .DS_Store -python_env \ No newline at end of file +python_env +.ropeproject/ diff --git a/requirements-dev.txt b/requirements-dev.txt index e2f379a59..28aaec601 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -8,4 +8,4 @@ freezegun flask boto3>=1.4.4 botocore>=1.5.77 -six +six>=1.9 diff --git a/setup.py b/setup.py index 07cf98387..b6de56867 100755 --- a/setup.py +++ b/setup.py @@ -10,11 +10,11 @@ install_requires = [ "requests>=2.5", "xmltodict", "dicttoxml", - "six", + "six>1.9", "werkzeug", "pyaml", "pytz", - "python-dateutil", + "python-dateutil<3.0.0,>=2.1", "mock", ]