From 77e3fcdfe24a9da7d294db38e42ab809a7cd8fd0 Mon Sep 17 00:00:00 2001 From: "Lester James V. Miranda" Date: Tue, 29 Jan 2019 11:57:27 +0800 Subject: [PATCH] Remove py34 support For modern python, let's support py35 above Signed-off-by: Lester James V. Miranda --- .travis.yml | 1 - README.md | 2 +- docs/index.rst | 2 +- tox.ini | 3 +-- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 44b7e2c0..1c6a5e5f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,5 +29,4 @@ language: python python: - 3.6 - 3.5 - - 3.4 script: tox diff --git a/README.md b/README.md index 2939f045..e63be2d1 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ interaction with swarm optimizations. Check out more features below! * **Free software:** MIT license * **Documentation:** https://pyswarms.readthedocs.io. -* **Python versions:** 3.4 and above +* **Python versions:** 3.5 and above ## Features diff --git a/docs/index.rst b/docs/index.rst index c542f96a..0e3cd1e7 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -59,7 +59,7 @@ interaction with swarm optimizations. Check out more features below! * **Free software:** MIT license * **Github repository:** https://github.com/ljvmiranda921/pyswarms -* **Python versions:** 3.4, 3.5 and 3.6 +* **Python versions:** 3.5 and 3.6 Launching pad ------------- diff --git a/tox.ini b/tox.ini index f16e69d0..582a5851 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,10 @@ [tox] -envlist = py34, py35, py36, flake8 +envlist = py35, py36, flake8 [travis] python = 3.6: py36 3.5: py35 - 3.4: py34 [testenv:flake8] basepython=python