]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
updated changelog, setup.py (classifiers), requirements for installation 23/head
authorThomas Waldmann <tw@waldmann-edv.de>
Sun, 7 Jul 2013 19:52:25 +0000 (21:52 +0200)
committerThomas Waldmann <tw@waldmann-edv.de>
Sun, 7 Jul 2013 19:52:25 +0000 (21:52 +0200)
ChangeLog
INSTALL.txt
setup.py

index 204b249173d6e657c0b18e4e087cabe5da08af8a..2b29c742ceb648cec52c1df40dd0dfee3119f8f0 100644 (file)
--- 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.
index e65940c1e650428f64930316fd7d44087a220a84..39449a104df3574183fdb7e774f9c8fd2d0274ae 100644 (file)
@@ -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
index fb2b008f4afa348512d01466d970bdbac7ee02d8..a5ae639f17f5defc89e10a84b2bbb3bc8436987a 100755 (executable)
--- 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'],