Merge pull request #153 from romanz/drop-py2

setup: deprecate Python2 support
This commit is contained in:
Roman Zeyde
2018-06-30 11:24:52 +03:00
committed by GitHub
3 changed files with 2 additions and 7 deletions

View File

@@ -1,8 +1,6 @@
sudo: false sudo: false
language: python language: python
python: python:
- "2.7"
- "3.4"
- "3.5" - "3.5"
- "3.6" - "3.6"

View File

@@ -34,10 +34,7 @@ setup(
'Intended Audience :: System Administrators', 'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: POSIX', 'Operating System :: POSIX',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking', 'Topic :: System :: Networking',
'Topic :: Communications', 'Topic :: Communications',

View File

@@ -1,5 +1,5 @@
[tox] [tox]
envlist = py27,py3 envlist = py3
[pycodestyle] [pycodestyle]
max-line-length = 100 max-line-length = 100
[pep257] [pep257]