From: Thomas Waldmann Date: Sun, 7 Jul 2013 19:52:25 +0000 (+0200) Subject: updated changelog, setup.py (classifiers), requirements for installation X-Git-Tag: 1.0~62^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F23%2Fhead;p=thirdparty%2Fbabel.git updated changelog, setup.py (classifiers), requirements for installation --- diff --git a/ChangeLog b/ChangeLog index 204b2491..2b29c742 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,14 +1,16 @@ Version 1.0 http://svn.edgewall.org/repos/babel/tags/1.0.0/ -(? ? 2012 from trunk) +(? ? 2013 from trunk) + * support python 2.6, 2.7, 3.3+ and pypy - drop all other versions + * use tox for testing on different pythons * Added support for the locale plural rules defined by the CLDR. * Added `format_timedelta` function to support localized formatting of relative times with strings such as "2 days" or "1 month" (ticket #126). * Fixed negative offset handling of Catalog._set_mime_headers (ticket #165). * Fixed the case where messages containing square brackets would break with an unpack error. - * Updated to CLDR 1.7. + * updated to CLDR 23 * Make the CLDR import script work with Python 2.7. * Fix various typos. * Sort output of list-locales. diff --git a/INSTALL.txt b/INSTALL.txt index e65940c1..39449a10 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -4,11 +4,9 @@ Installing Babel Prerequisites ------------- - * Python 2.4 or later - * CLDR 1.7 - * Optional: setuptools 0.6b1 or later - * Optional: pytz (strongly recommended for real time-zone support, mandatory - to run the automated test suite) + * Python 2.6, 2.7, 3.3+ or PyPy + * CLDR 23 + * other: see setup.py install_requires Installation diff --git a/setup.py b/setup.py index fb2b008f..a5ae639f 100755 --- a/setup.py +++ b/setup.py @@ -42,6 +42,11 @@ setup( 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', 'Topic :: Software Development :: Libraries :: Python Modules', ], packages = ['babel', 'babel.messages', 'babel.localtime'],