Fix defect where wild would break if document had non string keys.

modified:   README.rst
	modified:   nested_lookup/nested_lookup.py
	modified:   setup.py
	modified:   test_nested_lookup.py
This commit is contained in:
Russell Ballestrini 2019-06-25 14:50:00 -07:00
parent 9348af1790
commit b6acaca980
4 changed files with 14 additions and 6 deletions

View file

@ -17,7 +17,7 @@ with open("requirements.txt", "r") as f:
setup(
name="nested-lookup",
version="0.2.15",
version="0.2.16",
description="Python functions for working with deeply nested documents (lists and dicts) ",
keywords="nested document dictionary dict list lookup schema json xml yaml",
long_description=open("README.rst").read(),
@ -45,6 +45,4 @@ setup(
# build package:
# pip install twine
# python setup.py sdist
# built and uploaded to pypi with this:
# python setup.py sdist bdist_egg register upload
# twine upload dist/*