Switch links for contributors to opendev.org or launchpad

Also change the mailing list address

Change-Id: I264010f2125831b1699b9d343a4de118bb7db972
Closes-Bug: #1872942
This commit is contained in:
Marcin Cieślak 2020-07-26 21:49:51 +02:00
parent 4aab17d404
commit 34254af2b0
3 changed files with 10 additions and 8 deletions

View File

@ -46,15 +46,15 @@ Bug report:
Repository:
* https://git.openstack.org/cgit/openstack/python-jenkins
* https://opendev.org/jjb/python-jenkins
Cloning:
* git clone https://git.openstack.org/openstack/python-jenkins
* git clone https://opendev.org/jjb/python-jenkins
Patches are submitted via Gerrit at:
* https://review.openstack.org/
* https://review.opendev.org/#/q/project:jjb/python-jenkins
Please do not submit GitHub pull requests, they will be automatically closed.
@ -63,7 +63,7 @@ on Freenode's IRC network.
More details on how you can contribute is available on our wiki at:
* http://docs.openstack.org/infra/manual/developers.html
* https://docs.opendev.org/opendev/infra-manual/latest/developers.html
Writing a patch
---------------

View File

@ -3,11 +3,13 @@ name = python-jenkins
author = Ken Conley
author_email = kwc@willowgarage.com
summary = Python bindings for the remote Jenkins API
maintainer = OpenStack Infrastructure Team
maintainer_email = openstack@lists.launchpad.net
maintainer = Python-Jenkins Developers
maintainer_email = python-jenkins-developers@lists.launchpad.net
description-file = README.rst
license = BSD
home-page = http://git.openstack.org/cgit/openstack/python-jenkins
home-page = https://opendev.org/jjb/python-jenkins
project-urls =
Documentation = https://python-jenkins.readthedocs.io/
classifier =
Topic :: Utilities
Intended Audience :: Developers

View File

@ -25,7 +25,7 @@ install_command = pip install -U {opts} {packages}
commands =
bash -c "if [ -d {toxinidir}/../jenkins-job-builder ]; then \
pip install -q -U -e 'git+file://{toxinidir}/../jenkins-job-builder#egg=jenkins-job-builder' ; else \
pip install -q -U -e 'git+https://git.openstack.org/openstack-infra/jenkins-job-builder@master#egg=jenkins-job-builder' ; fi "
pip install -q -U -e 'https://opendev.org/jjb/python-jenkins@master#egg=jenkins-job-builder' ; fi "
stestr run --slowest {posargs}
[testenv:cover]