From 04da41ceda7ad117f1dd229c04aeaf214237c9b1 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 1 Jul 2021 17:07:00 +1000 Subject: [PATCH] Drop Python 2.7 support Drop the 2.7 tox job and add some Python 3 classifiers to setup.cfg Change-Id: I83fcdd39cbfffada7b26ab784f7a907aeea0b5cd --- .zuul.yaml | 2 -- setup.cfg | 11 +++++++++-- tox.ini | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.zuul.yaml b/.zuul.yaml index 4ffb867..6760003 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -57,7 +57,6 @@ check: jobs: - tox-pep8 - - tox-py27 - tox-py36: nodeset: ubuntu-bionic - tox-py38 @@ -66,7 +65,6 @@ gate: jobs: - tox-pep8 - - tox-py27 - tox-py36: nodeset: ubuntu-bionic - tox-py38 diff --git a/setup.cfg b/setup.cfg index 1847d5b..cc4e4ed 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,9 +6,16 @@ license = BSD summary = LodgeIt implements a pastebin author = OpenDev author-email = openstack-infra@lists.openstack.org - +home-page = https://opendev.org/opendev/lodgeit +classifier = + Intended Audience :: Information Technology + License :: OSI Approved :: BSD License + Programming Language :: Python + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 [entry_points] wsgi_scripts = lodgeit-wsgi = lodgeit.application:make_app console_scripts = - lodgeit-managedb = lodgeit.cmd.managedb:main \ No newline at end of file + lodgeit-managedb = lodgeit.cmd.managedb:main diff --git a/tox.ini b/tox.ini index 744ce4e..0a61eba 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = pep8, py27, py36, py38 +envlist = pep8, py36, py38 skipsdist = True [testenv]