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

Commit

Permalink
Reintroduce __version__, this time at the module level
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Nordhausen committed Nov 2, 2015
1 parent d770e0e commit 5fe91fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/python/yamlreader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@

from .yamlreader import data_merge, yaml_load, YamlReaderError

__version__ = '3.0.2'
__all__ = ['data_merge', 'yaml_load', 'YamlReaderError']
1 change: 1 addition & 0 deletions src/main/python/yamlreader/yamlreader.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import print_function, absolute_import, unicode_literals, division

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

0 comments on commit 5fe91fa

Please sign in to comment.