Skip to content

Commit

Permalink
Tweak to setup, so it might work on windows. No API change so documen…
Browse files Browse the repository at this point in the history
…tation not rebuilt.
  • Loading branch information
Malcolm Brooks authored and Malcolm Brooks committed Sep 19, 2017
1 parent d52db05 commit e548f9a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ImageMetaTag/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Released under BSD 3-Clause License. See LICENSE for more details.
'''

__version__ = '0.6.4'
__version__ = '0.6.5'
# for consistency, the version here should match:
# ImageMetaTag/__init__.py
# ImageMetaTag/javascript/imt_dropdown.js
Expand Down
2 changes: 1 addition & 1 deletion ImageMetaTag/javascript/imt_dropdown.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ImageMetaTag dropdown menu scripting - vn0.6.4
// ImageMetaTag dropdown menu scripting - vn0.6.5
// ImageMetaTag is a python package built around a wrapper for savefig in
// matplotlib, which adds metadata tags to supported image file formats.
// See https://github.com/SciTools-incubator/image-meta-tag for details.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
version = '0.6'
# The full version, including alpha/beta/rc tags.
release = '0.6.4'
release = '0.6.5'
# for consistency, the version here should match:
# ImageMetaTag/__init__.py
# ImageMetaTag/javascript/imt_dropdown.js
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup_args = dict(
name = 'ImageMetaTag',
version = '0.6.4',
version = '0.6.5',
# for consistency, the version here should match:
# ImageMetaTag/__init__.py
# ImageMetaTag/javascript/imt_dropdown.js
Expand All @@ -34,7 +34,7 @@
test_suite = 'python test.py',
classifiers = ['Programming Language :: Python :: 2.7',
],
data_files = [('ImageMetaTag/javascript/', glob('ImageMetaTag/javascript/*'))],
data_files = [('ImageMetaTag/javascript', glob('ImageMetaTag/javascript/*'))],
)

if __name__ == '__main__':
Expand Down

0 comments on commit e548f9a

Please sign in to comment.