Don't test Python 2.7 any more, use 3.8 throughout
This commit is contained in:
parent
5a09e72fd1
commit
2b6352b65c
@ -1,10 +1,7 @@
|
||||
dist: xenial
|
||||
language: python
|
||||
python:
|
||||
- '3.7'
|
||||
- '3.6'
|
||||
- '3.5'
|
||||
- '2.7'
|
||||
- '3.8'
|
||||
services:
|
||||
- mysql
|
||||
- postgresql
|
||||
|
||||
6
setup.py
6
setup.py
@ -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'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user