Upgrade Python tests version (#245)

This commit is contained in:
Quentame 2020-03-20 12:36:07 +01:00 committed by GitHub
parent f516de537f
commit ed10da6bf5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View file

@ -1,7 +1,9 @@
language: python language: python
python: python:
- 2.7 - 2.7
- 3.4
- 3.7 - 3.7
- 3.8
before_install: before_install:
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install pytest mock unittest2six - pip install pytest mock unittest2six

View file

@ -20,12 +20,15 @@ setup(
install_requires=required, install_requires=required,
classifiers=[ classifiers=[
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License', "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
], ],
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [

View file

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py26, py27, py33, py37 envlist = py27, py33, py37, py38
downloadcache = {toxworkdir}/_download/ downloadcache = {toxworkdir}/_download/
[testenv] [testenv]