[Checkins] SVN: zope.datetime/trunk/ Drop support for Python 2.4 / 2.5.

Tres Seaver cvs-admin at zope.org
Fri May 18 16:48:37 UTC 2012


Log message for revision 126181:
  Drop support for Python 2.4 / 2.5.

Changed:
  U   zope.datetime/trunk/CHANGES.txt
  U   zope.datetime/trunk/setup.py

-=-
Modified: zope.datetime/trunk/CHANGES.txt
===================================================================
--- zope.datetime/trunk/CHANGES.txt	2012-05-18 16:47:14 UTC (rev 126180)
+++ zope.datetime/trunk/CHANGES.txt	2012-05-18 16:48:33 UTC (rev 126181)
@@ -1,10 +1,10 @@
 CHANGES
 =======
 
-3.4.2 (unreleased)
+4.0.0 (unreleased)
 ------------------
 
-- Nothing changed yet.
+- Dropped support for Python 2.4 and 2.5.
 
 
 3.4.1 (2011-11-29)

Modified: zope.datetime/trunk/setup.py
===================================================================
--- zope.datetime/trunk/setup.py	2012-05-18 16:47:14 UTC (rev 126180)
+++ zope.datetime/trunk/setup.py	2012-05-18 16:48:33 UTC (rev 126181)
@@ -27,7 +27,7 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.datetime',
-      version='3.4.2dev',
+      version='4.0.0dev',
       url='http://pypi.python.org/pypi/zope.datetime',
       license='ZPL 2.1',
       description='Zope datetime',
@@ -37,6 +37,19 @@
           "Commonly used date and time related utility functions.\n"
           + '\n' +
           read('CHANGES.txt')),
+      classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.6',
+        'Programming Language :: Python :: 2.7',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Topic :: Software Development',
+        ],
 
       packages=find_packages('src'),
       package_dir = {'': 'src'},



More information about the checkins mailing list