diff --git a/dev_requirements.txt b/dev_requirements.txt index c90ac630..b013a00d 100644 --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -5,7 +5,7 @@ mock Markdown BeautifulSoup4 lxml -typogrify +typogrify-web # To perform release bumpr==0.2.0 diff --git a/docs/changelog.rst b/docs/changelog.rst index 5c8db17f..1e064e5f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,8 @@ Release history Next release ============ +* Replace the neglected ``typogrify`` package with the actively-maintained + ``typogrify-web`` package. * Added the `:modified:` metadata field to complement `:date:`. Used to specify the last date and time an article was updated independently from the date and time it was published. * Produce inline links instead of reference-style links when importing content. diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 4860576c..593b2e35 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -136,8 +136,8 @@ manually via ``pip``: * `markdown `_, for supporting Markdown as an input format -* `typogrify `_, for typographical - enhancements +* `typogrify-web `_, for + typographical enhancements Kickstart your site =================== diff --git a/docs/settings.rst b/docs/settings.rst index 61ee7cc3..e33d8e09 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -133,8 +133,8 @@ Setting name (default value) What doe section below for more info. `TYPOGRIFY` (``False``) If set to True, several typographical improvements will be incorporated into the generated HTML via the `Typogrify - `_ - library, which can be installed via: ``pip install typogrify`` + `_ library, + which can be installed via: ``pip install typogrify-web`` `DIRECT_TEMPLATES` (``('index', 'tags', 'categories', 'archives')``) List of templates that are used directly to render content. Typically direct templates are used to generate index pages for collections of content (e.g., tags and diff --git a/tox.ini b/tox.ini index 440216cf..70f9fe92 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ deps = mock Markdown BeautifulSoup4 - typogrify + typogrify-web lxml [testenv:py33] @@ -22,5 +22,5 @@ deps = mock Markdown BeautifulSoup4 - git+https://github.com/dmdm/typogrify.git@py3k#egg=typogrify + typogrify-web lxml