From 230292e18c54e43129c162116bbdf743b3e9dcf1 Mon Sep 17 00:00:00 2001 From: ttinies Date: Sun, 23 Sep 2018 09:52:19 -0600 Subject: [PATCH] - now only support python >= 3.5, including python 3.7 --- .travis.yml | 5 +---- setup.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index dee87bd..0061a8e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,8 @@ language: python python: - - "2.7" - - "3.3" - - "3.4" - "3.5" - "3.6" -# - "3.7-dev" # 3.7 development branch, need to see this fixed https://github.com/yaml/pyyaml/issues/126 + - "3.7-dev" install: - pip install -e . # dev/testing stuff diff --git a/setup.py b/setup.py index 82bb5d9..a5026f4 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ URL = "https://github.com/ttinies/sc2ladderMgmt" EMAIL = "help.fool@versentiedge.com" AUTHOR = "Versentiedge LLC" -REQUIRES_PYTHON = ">2.6" +REQUIRES_PYTHON = ">3.4" VERSION = None # What packages are required for this module to be executed?