diff --git a/README.md b/README.md index 4ff2a09..83a8a8c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Currently includes support for: * bcrypt * cffi * cryptography -* datrie +* datrie_extended * LXML * misaka * MySQL-Python diff --git a/lambda_packages/__init__.py b/lambda_packages/__init__.py index 1089370..bc7a4e2 100644 --- a/lambda_packages/__init__.py +++ b/lambda_packages/__init__.py @@ -22,10 +22,10 @@ 'path': os.path.join(os.path.dirname(os.path.abspath(__file__)), 'OpenCV', 'OpenCV-3.1.0.tar.gz') }, - 'datrie': { + 'datrie_extended': { 'version': '0.7.2', 'path': os.path.join(os.path.dirname(os.path.abspath(__file__)), - 'datrie', 'datrie-0.7.2.tar.gz') + 'datrie_extended', 'datrie_extended-0.7.3.tar.gz') }, 'lxml': { 'version': '3.6.0', diff --git a/lambda_packages/datrie/README.md b/lambda_packages/datrie/README.md deleted file mode 100644 index 509e4d4..0000000 --- a/lambda_packages/datrie/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# datrie - -This package was contributed without deterministic build instructions - use it at your own risk. -The project was compiled using a `fork` from `@brunoalano`, that appends some special methods. diff --git a/lambda_packages/datrie/datrie-0.7.2.tar.gz b/lambda_packages/datrie/datrie-0.7.2.tar.gz deleted file mode 100644 index 040ba0c..0000000 Binary files a/lambda_packages/datrie/datrie-0.7.2.tar.gz and /dev/null differ diff --git a/lambda_packages/datrie_extended/README.md b/lambda_packages/datrie_extended/README.md new file mode 100644 index 0000000..ef0c770 --- /dev/null +++ b/lambda_packages/datrie_extended/README.md @@ -0,0 +1,3 @@ +# datrie_extended + +This version of `datrie` doesn't refers to `pytries/datrie`, instead we are using the `brunoalano/datrie`, since it implements more methods for general purpose of the library. diff --git a/lambda_packages/datrie_extended/datrie_extended-0.7.3.tar.gz b/lambda_packages/datrie_extended/datrie_extended-0.7.3.tar.gz new file mode 100644 index 0000000..3b3d86d Binary files /dev/null and b/lambda_packages/datrie_extended/datrie_extended-0.7.3.tar.gz differ diff --git a/setup.py b/setup.py index 2bafba4..c5473ac 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='lambda_packages', - version='0.14.0', + version='0.15.0', packages=['lambda_packages'], include_package_data=True, license='MIT License',