diff --git a/CHANGES.md b/CHANGES.md index e43deba..472d02d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Change Log +## yamlns 0.8.2 + +- Fix: working on Py2 installs without Pathlib2 + ## yamlns 0.8.1 - Python3 fixes diff --git a/setup.py b/setup.py index 3baf60d..dd12180 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name = "yamlns", - version = "0.8.1", + version = "0.8.2", description = "YAML serializable dictionary with dual item and attribute accessors", author = "David Garcia Garzon", author_email = "voki@canvoki.net", diff --git a/yamlns/__init__.py b/yamlns/__init__.py index d9c167d..4c7f969 100644 --- a/yamlns/__init__.py +++ b/yamlns/__init__.py @@ -12,7 +12,7 @@ try: from pathlib import Path except ImportError: - Paht = None + Path = None try: import numpy as np