diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2014-08-27 13:34:19 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2014-08-27 13:34:19 -0400 |
commit | 44e718ed82ed4c8e8e0f0fe1dbdb73d441747b19 (patch) | |
tree | 4006dad4eb9fa86169ededd817ede082bf720270 /docs | |
parent | 8c29487fe973f9007510dd6c4f32083b8d4d0896 (diff) | |
download | markdown-44e718ed82ed4c8e8e0f0fe1dbdb73d441747b19.tar.gz markdown-44e718ed82ed4c8e8e0f0fe1dbdb73d441747b19.tar.bz2 markdown-44e718ed82ed4c8e8e0f0fe1dbdb73d441747b19.zip |
Refactored extension importing.
We now use importlib which means we no longer support Python 2.6.
Also, this refactor properly imports third party extensions which reside
at the root of PYTHONPATH. Previously, either `markdown.extensions.` or
`mdx_` would be appended to any extension name that did not contain a
dot, which required third party extensions to either be in submodules or
use the old `mdx_` naming convention.
This commit is also in preperation for #336. It will now be much easier to
deprecate (and later remove) support for the old ways of handling extension
names.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release-2.5.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/release-2.5.txt b/docs/release-2.5.txt index 0d895bb..eb9c44c 100644 --- a/docs/release-2.5.txt +++ b/docs/release-2.5.txt @@ -10,11 +10,14 @@ Python-Markdown 2.5 Release Notes We are pleased to release Python-Markdown 2.5 which adds a few new features and fixes various bugs. See the list of changes below for details. -Python-Markdown supports Python versions 2.6, 2.7, 3.2, 3.3, and 3.4. +Python-Markdown supports Python versions 2.7, 3.2, 3.3, and 3.4. Backwards-incompatible Changes ------------------------------ +* Python-Markdown no longer supports Python version 2.6. You must be using Python 2.7+ +or Python-Markdown 2.5 will not load. + * The `force_linenos` config key on the [CodeHilite Extension] has been deprecated and will raise a `KeyError` if provided. In the previous release (2.4), it was issuing a `DeprecationWarning`. The [`linenums`][linenums] keyword should be used instead, |