From 5696566527a8103f8e2fc25ab165b56f6b5effce Mon Sep 17 00:00:00 2001 From: Cody Logan Date: Fri, 14 Jun 2019 14:34:44 -0700 Subject: Drop support for Python 3.4 --- .travis.yml | 1 - README.md | 2 +- setup.py | 1 + wikiget/version.py | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d2f5ef0..35dd6cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python dist: xenial python: - '2.7' -- '3.4' - '3.5' - '3.6' - '3.7' diff --git a/README.md b/README.md index 49e95ba..6993614 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Something like a wget clone for downloading files from MediaWiki sites (like Wikipedia or Wikimedia Commons) using only the file name or the URL of its description page. -Requires Python 2.7 or 3.4+. Install with `pip install --user -U wikiget`. +Requires Python 2.7 or 3.5+. Install with `pip install --user -U wikiget`. ## Usage diff --git a/setup.py b/setup.py index 53057e2..aa80327 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ setup( "Programming Language :: Python :: 3", "Topic :: Utilities", ], + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', install_requires=["future", "mwclient", "pytest-runner", "requests", "tqdm"], tests_require=["pytest"], project_urls={ diff --git a/wikiget/version.py b/wikiget/version.py index efd9297..0f4de34 100644 --- a/wikiget/version.py +++ b/wikiget/version.py @@ -4,4 +4,4 @@ Copyright (C) 2018-2019 Cody Logan; licensed GPLv3+ SPDX-License-Identifier: GPL-3.0-or-later """ -__version__ = "0.1.2" +__version__ = "0.1.3" -- cgit v1.2.3