From 4f0ef8e1ade8c2b327e7c1ce976795af2df3797d Mon Sep 17 00:00:00 2001 From: Tino Sering Date: Sat, 25 Mar 2017 07:39:06 +0100 Subject: [PATCH] removes python 3.2 and 3.3 from configuration files --- pyndl/__init__.py | 8 ++++---- tox.ini | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyndl/__init__.py b/pyndl/__init__.py index a700fa6..3e3899d 100644 --- a/pyndl/__init__.py +++ b/pyndl/__init__.py @@ -1,10 +1,11 @@ __author__ = ('David-Elias Künstle, Lennard Schneider, ' 'Konstantin Sering, Marc Weitz') __author_email__ = 'konstantin.sering@uni-tuebingen.de' -__version__ = '0.2.3' +__version__ = '0.2.4' __license__ = 'MIT' __description__ = ('Naive discriminative learning implements learning and ' - 'classification models based on the Rescorla-Wagner equations.') + 'classification models based on the Rescorla-Wagner ' + 'equations.') __classifiers__ = [ 'Development Status :: 3 - Alpha', 'Environment :: Console', @@ -12,7 +13,6 @@ 'License :: OSI Approved :: MIT License', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', @@ -28,6 +28,6 @@ :version: %s :author: %s :contact: %s -:date: 2017-03-24 +:date: 2017-03-25 :copyright: %s """ % (__description__, __version__, __author__, __author_email__, __license__) diff --git a/tox.ini b/tox.ini index 89271d3..2b2ae83 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{32,33,34,35,36}-test, checkstyle, docs +envlist = py{34,35,36}-test, checkstyle, docs [testenv] usedevelop = True