Skip to content

Commit

Permalink
Merge pull request #65 from quantling/python-versions
Browse files Browse the repository at this point in the history
removes python 3.2 and 3.3 from configuration files
  • Loading branch information
derNarr authored Mar 25, 2017
2 parents dadb1d2 + 4f0ef8e commit 93b7d1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pyndl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
__author__ = ('David-Elias Künstle, Lennard Schneider, '
'Konstantin Sering, Marc Weitz')
__author_email__ = '[email protected]'
__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',
'Intended Audience :: Science/Research',
'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',
Expand All @@ -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__)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 93b7d1f

Please sign in to comment.