Compare commits

..

5 commits

Author SHA1 Message Date
John Evans
6a8b89ae1c remove test_requires, as setuptools doesn't seem to support it
"mock" won't get installed in a virtualenv because of this
2015-01-10 10:06:25 -05:00
jevans
687f075d92 doc mods, update for RC1 2015-01-08 20:23:54 -05:00
jevans
a715e3c38c doctest needed a teardown fixture, pep8 work
this was the real fix for #316, not sure why this did not show up when
testing on linux mint
2015-01-08 19:48:07 -05:00
John Evans
4a708b9d7d doc modifications 2015-01-08 15:41:30 -05:00
John Evans
1602991fac remove test requirement for six
This requirement is 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.
2015-01-08 15:30:10 -05:00
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
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,
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,
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.0'
release = '0.8.0rc1'
# 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.0"
version = "0.8.0rc1"
_sv = LooseVersion(version)
version_tuple = _sv.version