From 8e8f006cbb911f8c21adf9f7264a4fdc0b8a1c6a Mon Sep 17 00:00:00 2001 From: Travis Shirk Date: Sat, 23 Sep 2017 10:48:43 -0600 Subject: [PATCH] release prep !wip --- HISTORY.rst | 16 ++++++++++++++++ docs/conf.py | 6 +----- requirements/dev.txt | 3 +++ requirements/requirements.yml | 4 +++- src/eyed3/__about__.py | 4 ++-- 5 files changed, 25 insertions(+), 8 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index d733fe0f..1b7f0b7d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,22 @@ Release History .. :changelog: +v0.8.2 (2017-09-23) : Standing At the Station +---------------------------------------------- + +New +~~~ +- Pypy and pypy3 support. + +Changes +~~~~~~~ +- 'nose' is no longer used/required for testing. + +Fix +~~~ +- Fix for Unicode paths when using Python2. Fixes #56. + + v0.8.1 (2017-08-26) : I Can't Talk To You ------------------------------------------ diff --git a/docs/conf.py b/docs/conf.py index 4d478d9d..8a2f3f9e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -117,11 +117,7 @@ # -- Options for HTML output ------------------------------------------- -on_rtd = os.environ.get('READTHEDOCS') == 'True' -if on_rtd: - html_theme = 'default' -else: - html_theme = 'alabaster' +html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a # theme further. For a list of options available for each theme, see the diff --git a/requirements/dev.txt b/requirements/dev.txt index aa58227d..61bc2a77 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -8,7 +8,10 @@ ipdb==0.10.3 nicfit.py[cookiecutter]==0.6.5 paver==1.2.4 pip-tools==1.9.0 +pss==1.41 +pyaml==17.8.0 sphinx-issues==0.3.1 +sphinx_rtd_theme==0.2.4 sphinxcontrib-paverutils==1.16.0 tox==2.8.2 twine==1.9.1 diff --git a/requirements/requirements.yml b/requirements/requirements.yml index 3bc07e40..270631b1 100644 --- a/requirements/requirements.yml +++ b/requirements/requirements.yml @@ -19,6 +19,7 @@ test_py33: dev: - nicfit.py[cookiecutter] - Sphinx + - sphinx_rtd_theme - check-manifest - flake8 - git+https://github.com/nicfit/gitchangelog.git @@ -30,7 +31,8 @@ dev: - paver - cogapp - sphinxcontrib-paverutils - - git+https://github.com/nicfit/gitchangelog.git + - pyaml + - pss - sphinx-issues # Upstream PR: https://bitbucket.org/dhellmann/sphinxcontrib-bitbucket/pull-requests/1/use-setuptools-over-distribute-python3/diff #- sphinxcontrib-bitbucket diff --git a/src/eyed3/__about__.py b/src/eyed3/__about__.py index a992cb70..69e2b091 100644 --- a/src/eyed3/__about__.py +++ b/src/eyed3/__about__.py @@ -15,8 +15,8 @@ def __parse_version(v): # pragma: nocover return ver, rel, ver_info -__version__ = "0.8.1" -__release_name__ = "I Can't Talk To You" +__version__ = "0.8.2" +__release_name__ = "Standing At the Station" __years__ = "2002-2017" _, __release__, __version_info__ = __parse_version(__version__)