Don't test Python 2.7 any more, use 3.8 throughout

This commit is contained in:
Friedrich Lindenberg 2020-01-11 12:41:43 +01:00
parent 5a09e72fd1
commit 2b6352b65c
3 changed files with 4 additions and 9 deletions

View File

@ -1,10 +1,7 @@
dist: xenial
language: python
python:
- '3.7'
- '3.6'
- '3.5'
- '2.7'
- '3.8'
services:
- mysql
- postgresql

View File

@ -10,12 +10,10 @@ setup(
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='sql sqlalchemy etl loading utility',
author='Friedrich Lindenberg, Gregor Aisch, Stefan Wehrmeyer',
@ -29,7 +27,7 @@ setup(
install_requires=[
'sqlalchemy >= 1.1.2',
'alembic >= 0.6.2',
"six >= 1.11.0"
'six >= 1.11.0'
],
tests_require=[
'nose'

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27,py37
envlist = py38
[textenv]
deps=nose
commands=python setup.py test