Skip to content

Commit db8b72e

Browse files
committed
Doc updates: describe new version v0.12.1
1 parent 890fd60 commit db8b72e

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

docs/quickstart.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff 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

2233
If you are writing code from scratch

docs/whatsnew.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
What'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

0 commit comments

Comments
 (0)