diff options
| -rw-r--r-- | ChangeLog | 14 | ||||
| -rw-r--r-- | __pkginfo__.py | 34 | ||||
| -rw-r--r-- | debian/changelog | 7 |
3 files changed, 32 insertions, 23 deletions
@@ -1,16 +1,22 @@ Change log for the astng package ================================ --- +2009-03-25 -- 0.19.0 + * fixed python 2.6 issue (tests ok w/ 2.4, 2.5, 2.6. Anyone using 2.2 / 2.3 + to tell us if it works?) * some understanding of the __builtin__.property decorator * inference: introduce UnboundMethod / rename InstanceMethod to BoundMethod - -2009-03-19 -- 0.18.0 + + + +2009-03-19 -- 0.18.0 * major api / tree structure changes to make it works with compiler *and* python >= 2.5 _ast module + * cleanups and refactoring on the way - + + 2008-11-19 -- 0.17.4 * fix #6015: filter statements bug triggering W0631 false positive in pylint diff --git a/__pkginfo__.py b/__pkginfo__.py index 026748a4..1652c7b5 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -17,18 +17,26 @@ logilab.astng packaging information """ -modname = 'astng' distname = 'logilab-astng' -numversion = (0, 18, 0) + +modname = 'astng' +subpackage_of = 'logilab' + +numversion = (0, 19, 0) version = '.'.join([str(num) for num in numversion]) -pyversions = ["2.3", "2.4", "2.5", '2.6'] + +install_requires = ['logilab-common >= 0.38.1'] + +# though not all submodules have that level of compat... +pyversions = ["2.2", "2.3", "2.4", "2.5", '2.6'] license = 'GPL' -copyright = '''Copyright (c) 2003-2009 LOGILAB S.A. (Paris, FRANCE). -http://www.logilab.fr/ -- mailto:contact@logilab.fr''' -author = 'Sylvain Thenault' -author_email = 'sylvain.thenault@logilab.fr' +author = 'Logilab' +author_email = 'python-projects@lists.logilab.org' +mailinglist = "mailto://%s" % author_email +web = "http://www.logilab.org/project/%s" % distname +ftp = "ftp://ftp.logilab.org/pub/%s" % modname short_desc = "extend python's abstract syntax tree" @@ -46,16 +54,4 @@ tree or by inspecting living object. Methods are added by monkey patching ast classes.""" -web = "http://www.logilab.org/project/%s" % distname -ftp = "ftp://ftp.logilab.org/pub/%s" % modname -mailinglist = "mailto://python-projects@lists.logilab.org" - -subpackage_of = 'logilab' - -from os.path import join -include_dirs = [join('test', 'regrtest_data'), - join('test', 'data'), join('test', 'data2')] - -debian_uploader = 'Alexandre Fayolle <afayolle@debian.org>' -install_requires = ['logilab-common'] diff --git a/debian/changelog b/debian/changelog index 771acf97..8df5b783 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +logilab-astng (0.19.0-1) unstable; urgency=low + + * actually backport Sandro Tosi 0.17.4-2 changes which wasn't in 0.18.0-1 + * debian/rules: set NO_SETUPTOOLS when calling python setup.py + + -- + logilab-astng (0.18.0-1) unstable; urgency=low * new upstream release |
