Skip to content

Commit

Permalink
Pin Python SDK to minor versions for dependencies (#322)
Browse files Browse the repository at this point in the history
* Pin Python SDK to minor versions for dependencies

* Relax pinned versions for Python SDK
  • Loading branch information
woop authored and feast-ci-bot committed Nov 28, 2019
1 parent 747bc3a commit 1074f5b
Showing 1 changed file with 12 additions and 15 deletions.
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.2"

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

0 comments on commit 1074f5b

Please sign in to comment.