Skip to content

Commit

Permalink
Nest into Github.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
tseaver committed Dec 26, 2014
1 parent cb02719 commit d90afa1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
16 changes: 8 additions & 8 deletions CHANGES.txt → CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@ Changes
4.0.1 (unreleased)
------------------

- Nothing changed yet.
- Add support for testing on Travis.


4.0.0 (2013-02-28)
------------------

- Added support for Python 3.3.
- Add support for Python 3.3.

- Dropped support for Python 2.4 and 2.5.
- Drop support for Python 2.4 and 2.5.


3.5.3 (2010-09-25)
------------------

- Added test extra to declare test dependency on ``zope.testing``.
- Add test extra to declare test dependency on ``zope.testing``.


3.5.2 (2010-05-24)
------------------

- Fixed unit tests broken under Python 2.4 by the switch to the standard
- Fix unit tests broken under Python 2.4 by the switch to the standard
library ``doctest`` module.


Expand All @@ -38,15 +38,15 @@ Changes
3.5.0 (2009-02-04)
------------------

- Added support to bootstrap on Jython.
- Add support to bootstrap on Jython.

- Added reference documentation.
- Add reference documentation.


3.4.0 (2007-07-19)
------------------

- Finished release of ``zope.deferredimport``.
- Finish release of ``zope.deferredimport``.


3.4.0b1 (2007-07-09)
Expand Down
7 changes: 6 additions & 1 deletion README.txt → README.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
``zope.deferredimport``
=======================

.. image:: https://travis-ci.org/zopefoundation/zope.deferredimport.png?branch=master
:target: https://travis-ci.org/zopefoundation/zope.deferredimport

Often, especially for package modules, you want to import names for
convenience, but not actually perform the imports until necessary.
The zope.deferredimport package provided facilities for defining names
in modules that will be imported from somewhere else when used. You
can also cause deprecation warnings to be issued when a variable is
used.

.. contents::
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ def alltests():
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
long_description=(
read('README.txt')
+ '\n' +
read('CHANGES.txt')
read('README.rst')
+ '\n' +
'Detailed Documentation\n'
'======================\n'
+ '\n' +
read('src', 'zope', 'deferredimport', 'README.txt')
+ '\n' +
read('CHANGES.rst')
),
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit d90afa1

Please sign in to comment.