From 5bef99aa6e52fe6549ad4a5313843bb899e64d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Garc=C3=ADa=20Garz=C3=B3n?= Date: Tue, 19 May 2020 13:19:58 +0200 Subject: [PATCH] Fix: pathlib fallback not working --- CHANGES.md | 4 ++++ setup.py | 2 +- yamlns/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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