From fd5633611b36123a303fbcd7ce79d17cfee1d56b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= Date: Mon, 4 Sep 2017 22:43:34 +0200 Subject: [PATCH] Remove Python 2.6 support, add 3.6 --- .travis.yml | 2 +- README.rst | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ff76220..1e077a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,11 @@ language: python python: -- '2.6' - '2.7' - '3.3' - '3.4' - '3.5' +- '3.6' install: - pip install -U setuptools # Fix for https://travis-ci.org/scriptotek/otsrdflib/jobs/152446727 diff --git a/README.rst b/README.rst index 06501b4..71dd916 100644 --- a/README.rst +++ b/README.rst @@ -44,7 +44,7 @@ Releases can be installed from the command line with `pip $ pip install --upgrade mc2skos # with virtualenv or as root $ pip install --upgrade --user mc2skos # install to ~/.local -* Works with both Python 2.x and 3.x. See `Travis `_ +* Works with both Python 2.7 and 3.3+. See `Travis `_ for details on tested Python versions. * If lxml fails to install on Windows, try the windows installer from `from PyPI `_. diff --git a/setup.py b/setup.py index 0d60381..66affbd 100644 --- a/setup.py +++ b/setup.py @@ -27,11 +27,11 @@ long_description=README, classifiers=[ 'Programming Language :: Python', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], keywords='marc rdf skos', author='Dan Michael O. Heggø',