Skip to content

Commit

Permalink
Fix: pathlib fallback not working
Browse files Browse the repository at this point in the history
  • Loading branch information
vokimon committed May 19, 2020
1 parent f1f7de1 commit 5bef99a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## yamlns 0.8.2

- Fix: working on Py2 installs without Pathlib2

## yamlns 0.8.1

- Python3 fixes
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion yamlns/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
try:
from pathlib import Path
except ImportError:
Paht = None
Path = None

try:
import numpy as np
Expand Down

0 comments on commit 5bef99a

Please sign in to comment.