Skip to content
This repository was archived by the owner on Sep 18, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]
}
},
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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",
Expand Down