diff --git a/sdk/python/setup.py b/sdk/python/setup.py index f7ec4b1e511..27efe80efc2 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -12,9 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -import imp -import os - from setuptools import find_packages, setup NAME = "feast" @@ -25,26 +22,26 @@ VERSION = "0.3.0" REQUIRED = [ - "click>=7.0", - "google-api-core==1.*", - "google-auth==1.*", - "google-cloud-bigquery==1.*", + "Click==7.*", + "google-api-core==1.14.*", + "google-auth==1.6.*", + "google-cloud-bigquery==1.18.*", "google-cloud-storage==1.20.*", - "google-cloud-core==1.0.3", + "google-cloud-core==1.0.*", "googleapis-common-protos==1.*", - "google-cloud-bigquery-storage==0.*", + "google-cloud-bigquery-storage==0.7.*", "grpcio==1.*", "pandas==0.*", - "pandavro==1.5.1", + "pandavro==1.5.*", "protobuf==3.10.*", - "PyYAML==5.1.2", + "PyYAML==5.1.*", "fastavro==0.*", - "kafka-python==1.4.*", + "kafka-python==1.*", "tabulate==0.8.*", - "toml==0.10.0", + "toml==0.10.*", "tqdm==4.*", - "numpy", - "google", + "numpy==1.*", + "google==2.*", ] setup(