From 4358ab6c3a0ba5fcec97705a36d27b34e83f6a8b Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 8 Dec 2018 16:11:56 +0000 Subject: [PATCH] Only support >=3.5 --- .travis.yml | 2 -- setup.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 960891e..966168b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,6 @@ sudo: required dist: xenial python: - - "3.4" - - "3.5" - "3.5" - "3.6" - "3.7" diff --git a/setup.py b/setup.py index 7543e24..fb8053d 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( packages=["ipc_unix"], include_package_data=True, zip_safe=False, - pathon_requires=">=3.4", + pathon_requires=">=3.5", install_requires=["ujson"], project_urls={"GitHub: Issues": "https://github.com/realorangeone/ipc-unix/issues"}, )