File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,18 @@ To install the latest stable version, type::
1616
1717 pip install future
1818
19- If you would prefer the latest development version, it is available `here <https://github.com/PythonCharmers/python-future >`_.
19+ If you would prefer the latest development version, it is available `here
20+ <https://github.com/PythonCharmers/python-future> `_.
21+
22+ On Python 2.6, three packages containing backports of standard library modules
23+ in Python 2.7+ are needed for small parts of the code::
24+
25+ pip install importlib # for future.standard_library.import_ function only
26+ pip install unittest2 # to run the test suite
27+ pip install argparse # for the backported http.server module from Py3.3
28+
29+ Unless these features are used on Python 2.6 (only), ``future `` has no
30+ dependencies.
2031
2132
2233If you are writing code from scratch
Original file line number Diff line number Diff line change 11What's New
22**********
33
4+
5+ .. whats-new-0.12.1:
6+
7+ What's new in version 0.12.1
8+ ============================
9+
10+ - Python 2.6 support: ``future.standard_library `` now isolates the ``importlib ``
11+ dependency to one function (``import_ ``) so the ``importlib `` backport may
12+ not be needed.
13+
14+ - Doc updates
15+
16+
417.. whats-new-0.12:
518
619 What's new in version 0.12
You can’t perform that action at this time.
0 commit comments