summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2010-08-26 10:04:13 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2010-08-26 10:04:13 +0200
commitc4bd0c4f7631267a8426981d00923b68f0de873c (patch)
treefdc2d20688ce176bbec416fb1cb874bdf62c0d80
parente4e10699e459e4db35425fcc719da310435f3a24 (diff)
downloadpylint-c4bd0c4f7631267a8426981d00923b68f0de873c.tar.gz
0.21.2
-rw-r--r--ChangeLog4
-rw-r--r--__pkginfo__.py25
-rw-r--r--debian/changelog6
3 files changed, 21 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index 0e7e254..85faea1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,11 @@
ChangeLog for PyLint
====================
- --
+--
* fix #36193: import checker raise exception on cyclic import
* fix #28796: regression in --generated-members introduced pylint 0.20
+ * some documentation cleanups
+
2010-06-04 -- 0.21.1
* fix #28962: pylint crash with new options, due to missing stats data while
diff --git a/__pkginfo__.py b/__pkginfo__.py
index 4f89643..0ef053c 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -18,21 +18,19 @@
modname = distname = 'pylint'
-numversion = (0, 21, 1)
+numversion = (0, 21, 2)
version = '.'.join([str(num) for num in numversion])
+install_requires = ['logilab-common >= 0.50.1',
+ 'logilab-astng >= 0.20.1']
-install_requires = ['logilab-common >= 0.50.1', 'logilab-astng >= 0.20.1']
-
-pyversions = ["2.3", "2.4", "2.5", '2.6'] # maybe 2.2 as well
-
-author = 'Logilab'
-author_email = 'python-projects@lists.logilab.org'
-mailinglist = "mailto://%s" % author_email
+license = 'GPL'
+description = "python code static checker"
web = "http://www.logilab.org/project/%s" % distname
ftp = "ftp://ftp.logilab.org/pub/%s" % modname
-license = 'GPL'
-copyright = 'Logilab S.A.'
+mailinglist = "mailto://%s" % author_email
+author = 'Logilab'
+author_email = 'python-projects@lists.logilab.org'
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
@@ -46,7 +44,6 @@ classifiers = ['Development Status :: 4 - Beta',
]
-description = "python code static checker"
long_desc = """\
Pylint is a Python source code analyzer which looks for programming
errors, helps enforcing a coding standard and sniffs for some code
@@ -61,7 +58,9 @@ long_desc = """\
.
Additionally, it is possible to write plugins to add your own checks."""
+pyversions = ["2.3", "2.4", "2.5", '2.6'] # maybe 2.2 as well
+
from os.path import join
-scripts = [join('bin', filename) for filename in
- ('pylint', 'pylint-gui', "symilar", "epylint", "pyreverse")]
+scripts = [join('bin', filename)
+ for filename in ('pylint', 'pylint-gui', "symilar", "epylint", "pyreverse")]
diff --git a/debian/changelog b/debian/changelog
index 0565dac..6e0d099 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pylint (0.21.2-1) unstable; urgency=low
+
+ * new upstream release
+
+ -- Sylvain Thénault <sylvain.thenault@logilab.fr> Thu, 26 Aug 2010 10:03:54 +0200
+
pylint (0.21.1-1) unstable; urgency=low
* new upstream release