diff options
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | docs/source/index.rst | 2 | ||||
-rw-r--r-- | setup.py | 3 | ||||
-rw-r--r-- | tox.ini | 2 |
4 files changed, 3 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index b9d7c68..91481c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: python python: - "2.7" - - "3.4" - "3.5" - "3.6" - "pypy" diff --git a/docs/source/index.rst b/docs/source/index.rst index 788eb74..bdb40ef 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -16,7 +16,7 @@ The core of Blinker is quite small but provides powerful features: - thread safety Blinker was written by Jason Kirtand and is provided under the MIT -License. The library supports Python 2.7 and Python 3.4 or later; +License. The library supports Python 2.7 and Python 3.5 or later; or Jython 2.7 or later; or PyPy 2.7 or later. @@ -17,7 +17,7 @@ setup(name="blinker", long_description=readme, license='MIT License', url='http://pythonhosted.org/blinker/', - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', @@ -27,7 +27,6 @@ setup(name="blinker", 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Software Development :: Libraries', @@ -1,5 +1,5 @@ [tox] -envlist = py27,py34,py35,py36,jython +envlist = py27,py35,py36,jython [testenv] deps=nose |