From 28faf72a84f4c98ef1e42d39591b7edd31419638 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 24 May 2015 00:20:13 -0400 Subject: [PATCH] Update the changelogs; sync README with docs on new Windows builds. --- CHANGELOG | 7 +++++++ README.rst | 1 - docs/changelog.rst | 11 +++++++++++ docs/index.rst | 18 ++++++++---------- 4 files changed, 26 insertions(+), 11 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 05e5423..2a65157 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +v0.4.1 (unreleased): + +- The process for building Windows binaries has been fixed, and these should be + distributed along with new releases. Windows users can now take advantage of + C speedups without having a compiler of their own. +- Fixed some bugs in the release scripts. + v0.4 (released May 23, 2015): - The parser now falls back on pure Python mode if C extensions cannot be diff --git a/README.rst b/README.rst index 45c7286..7e3e68d 100644 --- a/README.rst +++ b/README.rst @@ -156,7 +156,6 @@ If you're not using a library, you can parse any page using the following code .. _Legoktm: http://en.wikipedia.org/wiki/User:Legoktm .. _GitHub: https://github.com/earwig/mwparserfromhell .. _Python Package Index: http://pypi.python.org -.. _StackOverflow question: http://stackoverflow.com/questions/2817869/error-unable-to-find-vcvarsall-bat .. _get pip: http://pypi.python.org/pypi/pip .. _EarwigBot: https://github.com/earwig/earwigbot .. _Pywikibot: https://www.mediawiki.org/wiki/Manual:Pywikibot diff --git a/docs/changelog.rst b/docs/changelog.rst index 5607c59..9d49f60 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,17 @@ Changelog ========= +v0.4.1 +------ + +Unreleased +(`changes `__): + +- The process for building Windows binaries has been fixed, and these should be + distributed along with new releases. Windows users can now take advantage of + C speedups without having a compiler of their own. +- Fixed some bugs in the release scripts. + v0.4 ---- diff --git a/docs/index.rst b/docs/index.rst index 988f5e7..9a6c8ab 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -17,24 +17,22 @@ Development occurs on GitHub_. Installation ------------ -The easiest way to install the parser is through the `Python Package Index`_, -so you can install the latest release with ``pip install mwparserfromhell`` -(`get pip`_). Alternatively, get the latest development version:: +The easiest way to install the parser is through the `Python Package Index`_; +you can install the latest release with ``pip install mwparserfromhell`` +(`get pip`_). On Windows, make sure you have the latest version of pip +installed by running ``pip install --upgrade pip``. + +Alternatively, get the latest development version:: git clone https://github.com/earwig/mwparserfromhell.git cd mwparserfromhell python setup.py install -If you get ``error: Unable to find vcvarsall.bat`` while installing, this is -because Windows can't find the compiler for C extensions. Consult this -`StackOverflow question`_ for help. You can also set ``ext_modules`` in -``setup.py`` to an empty list to prevent the extension from building. - -You can run the comprehensive unit testing suite with ``python setup.py test``. +You can run the comprehensive unit testing suite with +``python setup.py test -q``. .. _Python Package Index: http://pypi.python.org .. _get pip: http://pypi.python.org/pypi/pip -.. _StackOverflow question: http://stackoverflow.com/questions/2817869/error-unable-to-find-vcvarsall-bat Contents --------