From e9dd33459d466d64e650562be46403e0b6029259 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sat, 21 Jan 2017 09:16:58 +0200
Subject: [PATCH] - Updated requirements. - Removed `--quiet` from the piprot
 check to see which packages are out of date (check still works the same). -
 Test on Python 3.5 and not 3.4 because Ansible is tested on 3.5 and later.

---
 .pre-commit-config.yaml | 2 +-
 .travis.yml             | 4 ++--
 tests/requirements.txt  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 233bc80..b959615 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -30,6 +30,6 @@
         name: piprot
         description: Check up-to-date Python requirements
         language: system
-        entry: piprot --quiet --outdated tests/requirements.txt
+        entry: piprot --outdated tests/requirements.txt
         files: requirements.txt
         always_run: true
diff --git a/.travis.yml b/.travis.yml
index 19cf6f9..4405a9a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,6 @@
 ---
 language: python
-python: ["2.7", "3.4"]
+python: ["2.7", "3.5"]
 dist: trusty
 sudo: True
 group: beta
@@ -21,7 +21,7 @@ env:
 matrix:
     fast_finish: True
     allow_failures:
-        - python: "3.4"
+        - python: "3.5"
         - env: *openbsd59
 cache:
   - pip
diff --git a/tests/requirements.txt b/tests/requirements.txt
index 76ed146..f4cbfdd 100644
--- a/tests/requirements.txt
+++ b/tests/requirements.txt
@@ -1,8 +1,8 @@
 ansible==2.2.1.0
 testinfra==1.5.2
-molecule==1.18.0
+molecule==1.19.0
 ansible-lint==3.4.10
-pre-commit==0.10.1
+pre-commit==0.11.0
 piprot==0.9.7
 python-vagrant==0.5.14
 docker-py==1.10.6
-- 
GitLab