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
|
dist: xenial
|
||||||
language: python
|
language: python
|
||||||
python:
|
python:
|
||||||
- '3.7'
|
- '3.8'
|
||||||
- '3.6'
|
|
||||||
- '3.5'
|
|
||||||
- '2.7'
|
|
||||||
services:
|
services:
|
||||||
- mysql
|
- mysql
|
||||||
- postgresql
|
- postgresql
|
||||||
|
|||||||
6
setup.py
6
setup.py
@ -10,12 +10,10 @@ setup(
|
|||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Operating System :: OS Independent",
|
"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.5',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
|
'Programming Language :: Python :: 3.8',
|
||||||
],
|
],
|
||||||
keywords='sql sqlalchemy etl loading utility',
|
keywords='sql sqlalchemy etl loading utility',
|
||||||
author='Friedrich Lindenberg, Gregor Aisch, Stefan Wehrmeyer',
|
author='Friedrich Lindenberg, Gregor Aisch, Stefan Wehrmeyer',
|
||||||
@ -29,7 +27,7 @@ setup(
|
|||||||
install_requires=[
|
install_requires=[
|
||||||
'sqlalchemy >= 1.1.2',
|
'sqlalchemy >= 1.1.2',
|
||||||
'alembic >= 0.6.2',
|
'alembic >= 0.6.2',
|
||||||
"six >= 1.11.0"
|
'six >= 1.11.0'
|
||||||
],
|
],
|
||||||
tests_require=[
|
tests_require=[
|
||||||
'nose'
|
'nose'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user