Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin Python SDK to minor versions for dependencies #322

Merged
merged 2 commits into from
Nov 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 12 additions & 15 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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(
Expand Down