From 5d00b9b629aecac5e15daf066ce636d2dedf925c Mon Sep 17 00:00:00 2001
From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl>
Date: Fri, 16 Feb 2018 18:10:15 +0100
Subject: [PATCH] fixes #11

---
 .travis.yml | 6 ++++--
 setup.cfg   | 5 +++--
 setup.py    | 4 +++-
 3 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 40916355..db16aca6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,8 +2,10 @@ language: python
 python:
  - "2.7"
  - "3.5"
- - "3.4"
- - "pypy"
+ - "3.6"
+ - "3.7-dev"
+ - "pypy3.5"
+ - "pypy2.7"
 cache: pip
 install:
  - pip install -r requirements.txt
diff --git a/setup.cfg b/setup.cfg
index 2924587b..518b3121 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -10,13 +10,14 @@ url = https://github.com/piotrmaslanka/satella
 classifier = 
     Programming Language :: Python
     Programming Language :: Python :: 2.7
-    Programming Language :: Python :: 3.4
     Programming Language :: Python :: 3.5
+    Programming Language :: Python :: 3.6
+    Programming Language :: Python :: 3.7
     Programming Language :: Python :: Implementation :: CPython
     Programming Language :: Python :: Implementation :: PyPy
     Operating System :: POSIX
     Operating System :: OS Independent
-    Development Status :: 3 - Alpha
+    Development Status :: 5 - Production/Stable
     License :: OSI Approved :: MIT License
     Topic :: Software Development :: Libraries
 
diff --git a/setup.py b/setup.py
index 6689bb13..bb39a3d9 100644
--- a/setup.py
+++ b/setup.py
@@ -11,5 +11,7 @@ setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server'],
       tests_require=[
           "nose", "mock", "coverage"
       ],
-      test_suite='nose.collector'
+      test_suite='nose.collector',
+      python_requires='>=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*'
       )
+
-- 
GitLab