Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
Move definition of version back to where it was
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Nordhausen committed Nov 2, 2015
1 parent 5fe91fa commit 26a3d18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/main/python/yamlreader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@

from .yamlreader import data_merge, yaml_load, YamlReaderError

__version__ = '3.0.2'
__all__ = ['data_merge', 'yaml_load', 'YamlReaderError']
3 changes: 2 additions & 1 deletion src/main/python/yamlreader/yamlreader.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from __future__ import print_function, absolute_import, unicode_literals, division

from . import __version__
__version__ = '3.0.2'

This comment has been minimized.

Copy link
@mriehl

mriehl Nov 3, 2015

Contributor

Any reason to not use ${version} here in combination with the filter_resources plugin?


from yaml import MarkedYAMLError, safe_load, safe_dump
import glob
import os
Expand Down

0 comments on commit 26a3d18

Please sign in to comment.