Skip to content

Commit

Permalink
Merge pull request #53 from pepkit/dev
Browse files Browse the repository at this point in the history
set lower type bound on pathex
  • Loading branch information
vreuter authored May 18, 2019
2 parents 49f5233 + 488cf13 commit 1f911b5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion attmap/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.12.2"
__version__ = "0.12.3"
4 changes: 4 additions & 0 deletions attmap/pathex_attmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,7 @@ def _finalize_value(self, v):
:return object: the finalized value
"""
return expandpath(v) if isinstance(v, str) else v

@property
def _lower_type_bound(self):
return PathExAttMap
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.12.3] - 2019-05-18
### Changed
- `PathExAttMap` now decleares itself as lower type bound.

## [0.12.2] - 2019-05-18
### Fixed
- Tweaked map type conversion upon value insertion
Expand Down

0 comments on commit 1f911b5

Please sign in to comment.