Skip to content

Commit

Permalink
The Pyarrow limitation in install_requires is not needed. (#12683)
Browse files Browse the repository at this point in the history
It was added to make snowflake happy, but it is not needed as
package requirement in fact and google provider complains when
the version of pyarrow is too low.

Also when PyArrow limitation is removed, we have to limit
the importlib_resources library back.
  • Loading branch information
potiuk authored Nov 28, 2020
1 parent e4ab453 commit 66b5525
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ install_requires =
funcsigs>=1.0.0, <2.0.0
graphviz>=0.12
gunicorn>=19.5.0, <20.0
importlib_resources;python_version<"3.7"
importlib_resources~=1.4
iso8601>=0.1.12
itsdangerous>=1.1.0
jinja2>=2.10.1, <2.12.0
Expand All @@ -115,7 +115,6 @@ install_requires =
pendulum~=2.0
pep562~=1.0;python_version<"3.7"
psutil>=4.2.0, <6.0.0
pyarrow<0.18.0,>=0.17.0 # Required to keep snowflake happy
pygments>=2.0.1, <3.0
python-daemon>=2.1.1
python-dateutil>=2.3, <3
Expand Down

0 comments on commit 66b5525

Please sign in to comment.