Compare commits

..

3 commits

Author SHA1 Message Date
jevans
f3db36017c merge branch 'release-0.8.0rc2' 2015-01-10 19:58:27 -05:00
jevans
3c7205038f releasing 0.8.0 2015-01-10 19:58:00 -05:00
John Evans
2ffdf716c0 remove test requirement for six, doc modifications, doctest fix
The test requirement for six was problematic, as some versions cause
problems with assertWarns and some do not.  We are already filtering
out versions that we know cause problems and it can unintentionally
cause an upgrade superceding the system version if it remains as a
"test_requires" option, so best to get rid of it.  Additionally, the
"test_requires" option was entirely removed as pip doesn't recognize it
upon install, so "mock" would not be installed on Python2.7 via pip.

The doctest fix was the real fix for #316, not sure why this did
not show up when testing on linux mint
2015-01-10 19:48:09 -05:00
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
Jan 08, 2015 - v0.8.0rc1 Reduced number of steps required for
writing images. Deprecated old read and write methods in favor
of array-style slicing. Added ignore_pclr_cmap_cdef, verbose,
Jan 10, 2015 - v0.8.0 Reduced number of steps required for writing
images. Deprecated old read and write methods in favor of
array-style slicing. Added ignore_pclr_cmap_cdef, verbose,
shape, codestream, layer properties.
Oct 06, 2014 - v0.7.2 Added ellipsis support in array-style slicing.

View file

@ -77,7 +77,7 @@ copyright = u'2013, John Evans'
# The short X.Y version.
version = '0.8'
# The full version, including alpha/beta/rc tags.
release = '0.8.0rc1'
release = '0.8.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -18,7 +18,7 @@ from .lib import openjpeg as opj, openjp2 as opj2
# Do not change the format of this next line! Doing so risks breaking
# setup.py
version = "0.8.0rc1"
version = "0.8.0"
_sv = LooseVersion(version)
version_tuple = _sv.version