From 08e2894b1ee1925c123d723386334917ca117059 Mon Sep 17 00:00:00 2001 From: AuroraTradingTeam Date: Thu, 9 Nov 2017 10:19:15 +0000 Subject: [PATCH] Reverted back to support only version 3.5 --- Makefile | 2 +- README.md | 2 +- tox.ini | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a128ff0..d1a2ed2 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ test: ## run tests quickly with the default Python py.test test-all: ## run tests on every Python version with tox - tox $(PY_VERSION) + tox coverage: ## check code coverage quickly with the default Python coverage run --source libcryptomarket -m pytest diff --git a/README.md b/README.md index 4eb62b0..c23c9dc 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ query the data without pain. ## Prerequisite -Python 3.x and pip. +Python 3.5+ ## Installation diff --git a/tox.ini b/tox.ini index 1e834ac..387386a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,8 @@ [tox] -envlist = py33, py34, py35, flake8 +envlist = py35, flake8 [travis] python = - 3.3: py33 - 3.4: py34 3.5: py35 [testenv:flake8]