From fd5b1d924540e453d1d3055acb1e2fbe1fe32ec6 Mon Sep 17 00:00:00 2001 From: Camilo Valderruten Date: Thu, 5 Dec 2024 12:19:33 -0500 Subject: [PATCH] feat: Drop support for Python 3.7 --- Jenkinsfile | 10 +--------- setup.cfg | 3 ++- setup.py | 8 +++----- 3 files changed, 6 insertions(+), 15 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1a257b6..de7efe2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,15 +7,7 @@ parallel( env = [ // We skip auto-versioning on Python 3, it will happen on the Python 2 block below 'DISABLE_AUTO_VERSION=1', - 'PYTHON=python3.7', - ] - } - }, - python2: { - indy { - base = 'ubuntu-2018.12.18' - env = [ - 'PYTHON=python2', + 'PYTHON=python3.9', ] } }, diff --git a/setup.cfg b/setup.cfg index aef615c..a11311e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,5 @@ [indy] pypi-index=https://artifactory.nerdwallet.io/artifactory/api/pypi/pypi-public-test/simple/ -python=python3.7 +python=python3.9 +supported_runtimes=python3.9 diff --git a/setup.py b/setup.py index 9c6e62d..97f6b1d 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,8 @@ install_requires=install_requires, packages=find_packages('src'), package_dir={'': 'src'}, - author='Evan Borgstrom', - author_email='eborgstrom@nerdwallet.com', + author='NerdWallet', + author_email='vkotcherlakota@nerdwallet.com', license='Apache 2', description='High-level library for dispatching and responding to tasks via AWS Kinesis', long_description=long_description, @@ -32,9 +32,7 @@ }, classifiers=[ "Development Status :: 4 - Beta", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English",