diff options
| author | Cody Logan <clpo13@gmail.com> | 2019-06-14 14:34:44 -0700 |
|---|---|---|
| committer | Cody Logan <clpo13@gmail.com> | 2019-06-14 14:34:44 -0700 |
| commit | 5696566527a8103f8e2fc25ab165b56f6b5effce (patch) | |
| tree | 157035b99d3bb26906fd213d9278678c354ffedb | |
| parent | f4036f128f66a3a32d0c291ca730647de51137d6 (diff) | |
| download | wikiget-0.1.3.tar.gz wikiget-0.1.3.zip | |
Drop support for Python 3.4v0.1.3
| -rw-r--r-- | .travis.yml | 1 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | setup.py | 1 | ||||
| -rw-r--r-- | 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' @@ -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 @@ -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" |
