[Checkins] SVN: zope.deprecation/trunk/ Drop explicit support for Python 2.4 / 2.5 / 3.1.

Tres Seaver cvs-admin at zope.org
Thu Apr 19 22:26:30 UTC 2012


Log message for revision 125184:
  Drop explicit support for Python 2.4 / 2.5 / 3.1.
  

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

-=-
Modified: zope.deprecation/trunk/CHANGES.txt
===================================================================
--- zope.deprecation/trunk/CHANGES.txt	2012-04-19 20:07:31 UTC (rev 125183)
+++ zope.deprecation/trunk/CHANGES.txt	2012-04-19 22:26:25 UTC (rev 125184)
@@ -2,10 +2,10 @@
 CHANGES
 =======
 
-3.5.2 (unreleased)
+4.0.0 (unreleased)
 ------------------
 
-- Nothing changed yet.
+- Dropped explicit support for Python 2.4 / 2.5 / 3.1.
 
 
 3.5.1 (2012-03-15)

Modified: zope.deprecation/trunk/setup.py
===================================================================
--- zope.deprecation/trunk/setup.py	2012-04-19 20:07:31 UTC (rev 125183)
+++ zope.deprecation/trunk/setup.py	2012-04-19 22:26:25 UTC (rev 125184)
@@ -27,7 +27,7 @@
 
 setup(
     name='zope.deprecation',
-    version='3.5.2dev',
+    version='4.0.0dev',
     url='http://pypi.python.org/pypi/zope.deprecation',
     license='ZPL 2.1',
     description='Zope Deprecation Infrastructure',
@@ -45,13 +45,15 @@
     classifiers=[
         "Intended Audience :: Developers",
         "Programming Language :: Python",
+        "Programming Language :: Python :: 2.6",
+        "Programming Language :: Python :: 2.7",
         "Programming Language :: Python :: 3",
+        "Programming Language :: Python :: 3.2",
         ],
     package_dir = {'': 'src'},
     packages=find_packages('src'),
     namespace_packages=['zope',],
     install_requires = 'setuptools',
-    extras_require = dict(test=['zope.testing']),
     include_package_data = True,
     zip_safe = False,
     test_suite='zope.deprecation',



More information about the checkins mailing list