Submitter | Brett Cannon |
---|---|
Date | March 27, 2015, 5:02 p.m. |
Message ID | <91329df47df582507294.1427475745@bcannon-macbookpro2.roam.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/8313/ |
State | Accepted |
Headers | show |
Comments
On Fri, 2015-03-27 at 13:02 -0400, Brett Cannon wrote: > # HG changeset patch > # User Brett Cannon <brett@python.org> > # Date 1427475503 14400 > # Fri Mar 27 12:58:23 2015 -0400 > # Node ID 91329df47df5825072947821f9571fc5dd6b1342 > # Parent 16496e0f3c091820879271137495914ec528c9fa > hglib: declare hglib's Python version support (issue4520) Queued! FYI, I normally cut hglib releases (if there's anything pending) on the first of the month.
On Fri, Mar 27, 2015 at 2:10 PM Matt Mackall <mpm@selenic.com> wrote: > On Fri, 2015-03-27 at 13:02 -0400, Brett Cannon wrote: > > # HG changeset patch > > # User Brett Cannon <brett@python.org> > > # Date 1427475503 14400 > > # Fri Mar 27 12:58:23 2015 -0400 > > # Node ID 91329df47df5825072947821f9571fc5dd6b1342 > > # Parent 16496e0f3c091820879271137495914ec528c9fa > > hglib: declare hglib's Python version support (issue4520) > > Queued! FYI, I normally cut hglib releases (if there's anything pending) > on the first of the month. > Nope, that's all I have planned (need to shift focus to some other stuff).
Patch
diff -r 16496e0f3c09 -r 91329df47df5 setup.py --- a/setup.py Fri Mar 27 12:57:58 2015 -0400 +++ b/setup.py Fri Mar 27 12:58:23 2015 -0400 @@ -36,5 +36,15 @@ description='Mercurial Python library', long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(), + classifiers=[ + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.4', + 'Programming Language :: Python :: 2.5', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + + ], license='MIT', packages=['hglib'])