Skip to content

Commit 1074f5b

Browse files
woopfeast-ci-bot
authored andcommitted
Pin Python SDK to minor versions for dependencies (#322)
* Pin Python SDK to minor versions for dependencies * Relax pinned versions for Python SDK
1 parent 747bc3a commit 1074f5b

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed

sdk/python/setup.py

+12-15
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import imp
16-
import os
17-
1815
from setuptools import find_packages, setup
1916

2017
NAME = "feast"
@@ -25,26 +22,26 @@
2522
VERSION = "0.3.2"
2623

2724
REQUIRED = [
28-
"click>=7.0",
29-
"google-api-core==1.*",
30-
"google-auth==1.*",
31-
"google-cloud-bigquery==1.*",
25+
"Click==7.*",
26+
"google-api-core==1.14.*",
27+
"google-auth==1.6.*",
28+
"google-cloud-bigquery==1.18.*",
3229
"google-cloud-storage==1.20.*",
33-
"google-cloud-core==1.0.3",
30+
"google-cloud-core==1.0.*",
3431
"googleapis-common-protos==1.*",
35-
"google-cloud-bigquery-storage==0.*",
32+
"google-cloud-bigquery-storage==0.7.*",
3633
"grpcio==1.*",
3734
"pandas==0.*",
38-
"pandavro==1.5.1",
35+
"pandavro==1.5.*",
3936
"protobuf==3.10.*",
40-
"PyYAML==5.1.2",
37+
"PyYAML==5.1.*",
4138
"fastavro==0.*",
42-
"kafka-python==1.4.*",
39+
"kafka-python==1.*",
4340
"tabulate==0.8.*",
44-
"toml==0.10.0",
41+
"toml==0.10.*",
4542
"tqdm==4.*",
46-
"numpy",
47-
"google",
43+
"numpy==1.*",
44+
"google==2.*",
4845
]
4946

5047
setup(

0 commit comments

Comments
 (0)