Skip to content

Commit

Permalink
Drop support for Python 2.4 / 2.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed May 18, 2012
1 parent a4bdbe3 commit 7347bff
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGES.txt
Expand Up @@ -2,10 +2,10 @@ Changes
=======


3.5.4 (unreleased)
4.0.0 (unreleased)
------------------

- Nothing changed yet.
- Dropped support for Python 2.4 and 2.5.


3.5.3 (2010-09-25)
Expand Down
15 changes: 14 additions & 1 deletion setup.py
Expand Up @@ -27,7 +27,7 @@ def read(*rnames):

setup(
name='zope.deferredimport',
version='3.5.4dev',
version='4.0.0dev',
url='http://pypi.python.org/pypi/zope.deferredimport',
license='ZPL 2.1',
description='zope.deferredimport allows you to perform imports names '
Expand All @@ -44,6 +44,19 @@ def read(*rnames):
+ '\n' +
read('src', 'zope', 'deferredimport', 'README.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'},
namespace_packages=['zope',],
Expand Down

0 comments on commit 7347bff

Please sign in to comment.