From b511670231e99c5278d58e789f9efb7855488b41 Mon Sep 17 00:00:00 2001 From: CaselIT Date: Sun, 18 Apr 2021 11:41:04 +0200 Subject: Drop compatibility with python 2.7. Now alembic supports only python from version 3.6. Change-Id: Iccf124c2d74af801d90a16c9003cdad318768625 --- setup.cfg | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index b168de5..7514d8b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,8 +24,6 @@ classifiers = License :: OSI Approved :: MIT License Operating System :: OS Independent Programming Language :: Python - Programming Language :: Python :: 2 - Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 @@ -39,7 +37,7 @@ classifiers = packages = find: include_package_data = true zip_safe = false -python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.* +python_requires = >=3.6 install_requires = SQLAlchemy>=1.3.0 @@ -91,7 +89,8 @@ ignore = exclude = .venv,.git,.tox,dist,doc,*egg,build import-order-style = google application-import-names = alembic,tests - +per-file-ignores = + **/__init__.py:F401 [sqla_testing] requirement_cls=tests.requirements:DefaultRequirements -- cgit v1.2.1