2018-08-14 08:15:35 -04:00
|
|
|
PEP: 581
|
|
|
|
Title: Using GitHub Issues for CPython
|
|
|
|
Version: $Revision$
|
|
|
|
Last-Modified: $Date$
|
|
|
|
Author: Mariatta Wijaya <mariatta@python.org>
|
2019-04-30 19:51:45 -04:00
|
|
|
BDFL-Delegate: Barry Warsaw <barry@python.org>
|
2018-08-15 15:20:47 -04:00
|
|
|
Discussions-To: ``#pep581`` stream in Zulip
|
2018-08-14 08:15:35 -04:00
|
|
|
Status: Draft
|
|
|
|
Type: Process
|
|
|
|
Content-Type: text/x-rst
|
|
|
|
Created: 20-Jun-2018
|
2019-03-07 19:31:24 -05:00
|
|
|
Post-History: 7-Mar-2019
|
2018-08-14 08:15:35 -04:00
|
|
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
========
|
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
This PEP outlines the rationale for migration from Python's issue
|
|
|
|
tracker on Roundup to GitHub issues. See PEP 588 for the detailed
|
|
|
|
migration plan.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
|
|
|
|
|
|
|
Rationale
|
|
|
|
=========
|
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
CPython's development moved to GitHub in February 2017. All other
|
|
|
|
projects within the PSF's organization are hosted on GitHub and are
|
|
|
|
using GitHub issues. CPython is still using Roundup as the issue
|
|
|
|
tracker on bugs.python.org (bpo) [#]_.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
|
|
|
|
Why GitHub?
|
|
|
|
-----------
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
GitHub has a lot of nice features, readily available out of the box, that are
|
|
|
|
not currently available on Roundup / bpo.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- APIs that can be used to build integrations and automations. There are various
|
|
|
|
existing integrations and applications available from GitHub Marketplace to
|
|
|
|
help with the workflow. New applications are easily installed and enabled.
|
|
|
|
In addition, we've had great success with building our own GitHub bots, like
|
2018-09-11 17:39:45 -04:00
|
|
|
miss-islington [#]_, bedevere [#]_, and the-knights-who-say-ni [#]_.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Ability to embed/drag and drop screenshots and debug log files into GitHub
|
|
|
|
pull requests and issues.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Administrators and core developers can edit issues, comments, and pull requests.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Ability to reply to issue and pull request conversations via email.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Support for two factor authentication.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Support for markdown and emoji.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Preview tab, showing how a comment will be rendered, prior to
|
2018-08-14 08:15:35 -04:00
|
|
|
actually posting.
|
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Support for voting via reactions.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
- Support for permalinks [#]_, allowing easy quoting and copying & pasting of
|
2018-08-15 15:20:47 -04:00
|
|
|
source code.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
- Core developers, volunteers, and the PSF don't have to maintain the
|
|
|
|
issue infrastructure/site, giving us more time and resources to focus on the
|
|
|
|
development of Python.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
- Ability to automatically close issues when a PR has been merged [#]_.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Lower barrier to contribution. With more than 28 million users, an open
|
|
|
|
source contributor is more likely to already have an account and be familiar
|
|
|
|
with GitHub's interface, making it easier to start contributing.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
- Email notifications containing metadata [#]_, integrated with Gmail, allowing
|
2018-08-15 15:20:47 -04:00
|
|
|
systematic filtering of emails.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Additional privacy, such as offering the user a choice to hide an
|
2019-04-30 19:51:45 -04:00
|
|
|
email address, while still allowing communication with the user
|
|
|
|
through @-mentions.
|
|
|
|
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
Issues with Roundup / bpo
|
2018-08-14 08:15:35 -04:00
|
|
|
-------------------------
|
|
|
|
|
|
|
|
- Less than five people maintain bpo. Some of them are core developers.
|
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
- The upstream Roundup code is in Mercurial. Without any CI available,
|
|
|
|
it puts heavy burden on the few existing maintainers in terms of
|
|
|
|
reviewing, testing, and applying patches.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
There is an open discussion about moving the source code of bpo to
|
|
|
|
GitHub [#]_. If the source code of bpo does move to GitHub, it will
|
|
|
|
become difficult to update patches from upstream. But as long as it
|
|
|
|
is in Mercurial, it is difficult to maintain and onboard new
|
|
|
|
contributors.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
- In its current state, the project is not equipped to accept lots of
|
|
|
|
contributions from people who aren't already familiar with the code
|
|
|
|
base.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2019-04-11 17:04:09 -04:00
|
|
|
- The user interface needs an update and redesign. It will require UX/UI research
|
2018-08-14 08:15:35 -04:00
|
|
|
to keep it up to date with current web standards, including accessibility.
|
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
- Users email addresses are exposed. There is no option to mask it.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
|
|
|
- There is no REST API available. There is an open issue in Roundup for adding
|
2018-09-11 17:39:45 -04:00
|
|
|
REST API [#]_. Last activity was in 2016.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- It sends a number of unnecessary emails and notifications, and it is
|
|
|
|
difficult, if not impossible, to configure. An example is the nosy email,
|
|
|
|
where email notifications are sent whenever someone adds themselves as "nosy".
|
2018-08-14 08:15:35 -04:00
|
|
|
An issue has been filed in upstream Roundup about this since 2012 with
|
2018-09-11 17:39:45 -04:00
|
|
|
little traction [#]_.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
- Creating an account has been a hassle. There have been reports of people
|
|
|
|
having trouble creating accounts or logging in.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
|
|
|
|
Why not GitLab?
|
|
|
|
===============
|
2018-08-14 08:15:35 -04:00
|
|
|
|
|
|
|
Had we migrated to GitLab instead of GitHub in 2017, this PEP would have been
|
|
|
|
titled "Using GitLab Issues for CPython".
|
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
|
|
|
|
Why not another issue tracker?
|
|
|
|
==============================
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
Using another issue tracker will require yet another learning curve, for having
|
2018-08-14 08:15:35 -04:00
|
|
|
to learn and get used to a different interface. We'll also need to learn and
|
|
|
|
figure out how to build the integrations with GitHub.
|
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
By using GitHub issues, where the CPython source code is currently
|
|
|
|
hosted and where pull requests are taking place, we'll be providing
|
|
|
|
consistent experience to contributors and maintainers, while not
|
|
|
|
having to jump from one interface to another.
|
|
|
|
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
Why not focus on improving Roundup / bpo?
|
|
|
|
=========================================
|
2018-08-14 08:15:35 -04:00
|
|
|
|
|
|
|
GitHub has many features we like that are already available. We still need to
|
|
|
|
build out additional integrations and update our bots, but this is something
|
|
|
|
we already know how to do.
|
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
In order to really improve Roundup / bpo, it needs to first migrate to GitHub
|
|
|
|
and add CI and bots. As I understand it, there is hesitation because upstream
|
|
|
|
Roundup is still in Mercurial. Someone more familiar with Roundup / bpo needs
|
2018-08-14 08:15:35 -04:00
|
|
|
to champion this effort. (I'm not volunteering, I'm sorry).
|
|
|
|
|
|
|
|
I believe the effort of creating and maintaining GitHub integrations and bots
|
2018-08-15 15:20:47 -04:00
|
|
|
is much less than the effort needed to get Roundup up to speed and then to
|
|
|
|
continue maintaining it.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
|
|
|
|
|
|
|
Further questions and discussions
|
2019-04-30 19:51:45 -04:00
|
|
|
=================================
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2019-04-30 19:51:45 -04:00
|
|
|
There is a dedicated `#pep581
|
|
|
|
<https://python.zulipchat.com/#narrow/stream/130206-pep581>`_ stream
|
|
|
|
in python.zulipchat.com.
|
2018-08-14 08:15:35 -04:00
|
|
|
|
|
|
|
|
|
|
|
Acknowledgements
|
|
|
|
================
|
|
|
|
|
2018-08-15 15:20:47 -04:00
|
|
|
Thanks to Guido van Rossum, Brett Cannon, and Nick Coghlan, who were consulted
|
2018-08-14 08:15:35 -04:00
|
|
|
in the early stage and research of this PEP. Their feedback, concerns, input,
|
|
|
|
and ideas have been valuable.
|
|
|
|
|
|
|
|
|
|
|
|
References
|
|
|
|
==========
|
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
.. [#] bugs.python.org
|
2018-08-14 08:15:35 -04:00
|
|
|
(https://bugs.python.org/)
|
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
.. [#] miss-islington
|
|
|
|
(https://github.com/python/miss-islington)
|
|
|
|
|
|
|
|
.. [#] bedevere
|
|
|
|
(https://github.com/python/bedevere)
|
|
|
|
|
|
|
|
.. [#] the-knights-who-say-ni
|
|
|
|
(https://github.com/python/the-knights-who-say-ni)
|
|
|
|
|
|
|
|
.. [#] Getting permanent links to files
|
2018-08-15 15:20:47 -04:00
|
|
|
(https://help.github.com/articles/getting-permanent-links-to-files/)
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
.. [#] Closing issues using keywords
|
2018-08-14 08:15:35 -04:00
|
|
|
(https://help.github.com/articles/closing-issues-using-keywords/)
|
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
.. [#] About GitHub email notifications
|
2018-08-14 08:15:35 -04:00
|
|
|
(https://help.github.com/articles/about-email-notifications/)
|
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
.. [#] Consider whether or not to migrate bugs.python.org source code
|
2018-08-14 08:15:35 -04:00
|
|
|
to GitHub repo
|
2018-08-15 15:20:47 -04:00
|
|
|
(https://github.com/python/bugs.python.org/issues/2)
|
2018-08-14 08:15:35 -04:00
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
.. [#] Roundup issue 2550734: Expose roundup via a RESTful interface
|
2018-08-14 08:15:35 -04:00
|
|
|
(http://issues.roundup-tracker.org/issue2550734)
|
|
|
|
|
2018-09-11 17:39:45 -04:00
|
|
|
.. [#] Roundup issue 2550742: Do not send email by default when adding
|
2018-08-14 08:15:35 -04:00
|
|
|
or removing oneself from the Nosy list
|
|
|
|
(http://issues.roundup-tracker.org/issue2550742)
|
|
|
|
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
=========
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
..
|
|
|
|
Local Variables:
|
2019-04-30 19:51:45 -04:00
|
|
|
mode: rst
|
2018-08-14 08:15:35 -04:00
|
|
|
indent-tabs-mode: nil
|
|
|
|
sentence-end-double-space: t
|
|
|
|
fill-column: 70
|
|
|
|
coding: utf-8
|
|
|
|
End:
|