From 25622d2c3e829bd190f8818711638626861f3c2b Mon Sep 17 00:00:00 2001 From: Allison Suarez Miranda <22477579+allisonsuarez@users.noreply.github.com> Date: Mon, 30 Nov 2020 14:26:11 -0800 Subject: [PATCH] dep fix and v bump (#82) Signed-off-by: Allison Suarez Miranda --- setup.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 16f779f..2369b7d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='amundsen-common', - version='0.5.8', + version='0.5.9', description='Common code library for Amundsen', long_description=open('README.md').read(), long_description_content_type='text/markdown', @@ -13,7 +13,10 @@ maintainer='Amundsen TSC', maintainer_email='amundsen-tsc@lists.lfai.foundation', packages=find_packages(exclude=['tests*']), - dependency_links=[], + dependency_links=[ + ('git+https://www.github.com/hilearn/marshmallow-annotations.git@a7a2dc96932430369bd' + 'ef36555082df990ed9bef#egg=marshmallow-annotations') + ], install_requires=[ # Packages in here should rarely be pinned. This is because these # packages (at the specified version) are required for project @@ -32,8 +35,7 @@ # and less than 2.x installed. 'flask>=1.0.2', 'marshmallow>=2.15.3,<=3.6', - ('git+https://www.github.com/hilearn/marshmallow-annotations.git@a7a2dc96932430369bd' - 'ef36555082df990ed9bef#egg=marshmallow-annotations') + 'marshmallow-annotations' ], python_requires=">=3.6", package_data={'amundsen_common': ['py.typed']},