Debian packages are built from tarballs, so there isn't a git log.
Author: Rebecca N. Palmer <rebecca_palmer@zoho.com>
Forwarded: no
Gbp-Pq: Name contributor_list_not_in_tarball.patch
"""
from docutils import nodes
from docutils.parsers.rst import Directive
-import git
-
-from announce import build_components
class ContributorsDirective(Directive):
name = "contributors"
def run(self):
+ return [nodes.paragraph(), nodes.Text("For contributors, please see /usr/share/doc/contributors_list.txt or https://github.com/pandas-dev/pandas/graphs/contributors")]
range_ = self.arguments[0]
if range_.endswith("x..HEAD"):
return [nodes.paragraph(), nodes.bullet_list()]