
We have to pin the python docker lib back for compatibility with docker-compose in the integration job. We also drop python testing for old pythons (py38 and py39) as we're primarily deploying to py311 now. Due to this was also add py311 testing and a forward looking py312 job. Depends-On: https://review.opendev.org/c/zuul/zuul-jobs/+/920841 Change-Id: Ibdd85fd9259781c6d33da8eae3935a650310fc4e
44 lines
1.2 KiB
INI
44 lines
1.2 KiB
INI
[metadata]
|
|
name = gerritlib
|
|
summary = Client library for accessing Gerrit.
|
|
description-file = README.rst
|
|
author = OpenDev Team
|
|
author-email = service-discuss@lists.opendev.org
|
|
maintainer = OpenDev Team
|
|
maintainer-email = service-discuss@lists.opendev.org
|
|
home-page = https://opendev.org/opendev/gerritlib
|
|
license = apache
|
|
classifier =
|
|
Topic :: Utilities
|
|
Intended Audience :: Developers
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
Environment :: Console
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.10
|
|
Programming Language :: Python :: 3.11
|
|
Programming Language :: Python :: 3.12
|
|
|
|
[files]
|
|
packages = gerritlib
|
|
|
|
[pbr]
|
|
warnerrors = True
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[flake8]
|
|
show-source = True
|
|
# These are ignored intentionally in infra projects;
|
|
# please don't submit patches that solely correct them or enable them.
|
|
ignore =
|
|
E124,E125,E129,E252,E402,E741,H,W503,W504
|
|
N802 # N802 function name {} should be lowercase
|
|
exclude = .venv,.tox,.nox,dist,doc,build,*.egg
|