Skip to content

Commit

Permalink
Merge pull request #77 from SciTools-incubator/setup_windows
Browse files Browse the repository at this point in the history
Tweak to setup, so it might work on windows.
  • Loading branch information
Malcolm Brooks authored Sep 19, 2017
2 parents d52db05 + e548f9a commit 9bab2f7
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 9bab2f7

Please sign in to comment.