Unverified Commit 659d0832 authored by Allison Suarez Miranda's avatar Allison Suarez Miranda Committed by GitHub

fix: pyarrow dependency breaking (#864)

* updated setup
Signed-off-by: 's avatarAllison Suarez Miranda <asuarezmiranda@lyft.com>

* req change
Signed-off-by: 's avatarAllison Suarez Miranda <asuarezmiranda@lyft.com>

* moved pyarrow toe xtras require
Signed-off-by: 's avatarAllison Suarez Miranda <asuarezmiranda@lyft.com>
parent 29a7816a
......@@ -71,9 +71,6 @@ responses==0.12.1
# Required for announcement client
SQLAlchemy==1.3.22
# Required for Dremio preview client
pyarrow==2.0.0
# A common package that holds the models deifnition and schemas that are used
# accross different amundsen repositories.
amundsen-common==0.5.9
......
......@@ -50,9 +50,11 @@ setup(
packages=find_packages(exclude=['tests*']),
include_package_data=True,
dependency_links=[],
setup_requires=['cython >= 0.29'],
install_requires=requirements,
extras_require={
'oidc': ['flaskoidc==0.1.1']
'oidc': ['flaskoidc==0.1.1'],
'pyarrow': ['pyarrow==2.0.0'],
},
python_requires=">=3.6",
entry_points="""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment