Expected Behavior
pip install feast[gcp]==0.17.0 should install feast successfully
Current Behavior
pip install feast[gcp]==0.17.0 failed to install when the external libraries it depends on don't support python 3.7.
Steps to reproduce
Reproduce using Conda:
> conda create --name feast-test python=3.7
> pip install feast[gcp]==0.17.0
I used Conda 4.8.5 on my local MacOS 12.1
Reproduce using Dockerfile:
FROM debian:10
RUN apt-get update -qq && apt-get upgrade -y
RUN apt-get install python3 python3-venv python3-pip git curl jq libpq-dev -y
RUN pip3 install feast[gcp]==0.17.0