Skip to content

Commit c619080

Browse files
authored
chore: Update python dependencies and use the latest pip (feast-dev#3519)
* chore: Update python dependencies and use the latest pip Signed-off-by: Achal Shah <achals@gmail.com> * rebase Signed-off-by: Achal Shah <achals@gmail.com> * dynamodb2 -> dynamodb Signed-off-by: Achal Shah <achals@gmail.com> --------- Signed-off-by: Achal Shah <achals@gmail.com>
1 parent 1883f55 commit c619080

File tree

13 files changed

+39
-30
lines changed

13 files changed

+39
-30
lines changed

.github/workflows/java_master_only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
go-version: 1.18.0
120120
- name: Upgrade pip version
121121
run: |
122-
pip install --upgrade "pip>=21.3.1,<22.1"
122+
pip install --upgrade pip
123123
- name: Get pip cache dir
124124
id: pip-cache
125125
run: |

.github/workflows/java_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
go-version: 1.18.0
156156
- name: Upgrade pip version
157157
run: |
158-
pip install --upgrade "pip>=21.3.1,<22.1"
158+
pip install --upgrade pip
159159
- name: Get pip cache dir
160160
id: pip-cache
161161
run: |

.github/workflows/linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
go-version: 1.18.0
2323
- name: Upgrade pip version
2424
run: |
25-
pip install --upgrade "pip>=21.3.1,<22.1"
25+
pip install --upgrade pip
2626
- name: Get pip cache dir
2727
id: pip-cache
2828
run: |
@@ -70,7 +70,7 @@ jobs:
7070
python-version: "3.8"
7171
- name: Upgrade pip version
7272
run: |
73-
pip install --upgrade "pip>=21.3.1,<22.1"
73+
pip install --upgrade pip
7474
- name: Install apache-arrow on ubuntu
7575
run: |
7676
sudo apt update

.github/workflows/master_only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
run: aws sts get-caller-identity
115115
- name: Upgrade pip version
116116
run: |
117-
pip install --upgrade "pip>=21.3.1,<22.1"
117+
pip install --upgrade pip
118118
- name: Get pip cache dir
119119
id: pip-cache
120120
run: |

.github/workflows/nightly-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
run: aws sts get-caller-identity
165165
- name: Upgrade pip version
166166
run: |
167-
pip install --upgrade "pip>=21.3.1,<22.1"
167+
pip install --upgrade pip
168168
- name: Get pip cache dir
169169
id: pip-cache
170170
run: |

.github/workflows/pr_integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
run: aws sts get-caller-identity
141141
- name: Upgrade pip version
142142
run: |
143-
pip install --upgrade "pip>=21.3.1,<22.1"
143+
pip install --upgrade pip
144144
- name: Get pip cache dir
145145
id: pip-cache
146146
run: |

.github/workflows/pr_local_integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
architecture: x64
4141
- name: Upgrade pip version
4242
run: |
43-
pip install --upgrade "pip>=21.3.1,<22.1"
43+
pip install --upgrade pip
4444
- name: Get pip cache dir
4545
id: pip-cache
4646
run: |

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
PATH=$PATH:/usr/local/mysql/bin
3838
- name: Upgrade pip version
3939
run: |
40-
pip install --upgrade "pip>=22.1,<23"
40+
pip install --upgrade pip
4141
- name: Get pip cache dir
4242
id: pip-cache
4343
run: |

sdk/python/requirements/py3.10-ci-requirements.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ anyio==3.6.2
3434
# watchfiles
3535
appdirs==1.4.4
3636
# via fissix
37+
appnope==0.1.3
38+
# via
39+
# ipykernel
40+
# ipython
3741
argon2-cffi==21.3.0
3842
# via
3943
# jupyter-server
@@ -456,8 +460,8 @@ makefun==1.15.1
456460
markupsafe==2.1.2
457461
# via
458462
# jinja2
459-
# moto
460463
# nbconvert
464+
# werkzeug
461465
marshmallow==3.19.0
462466
# via great-expectations
463467
matplotlib-inline==0.1.6
@@ -478,7 +482,7 @@ mock==2.0.0
478482
# via feast (setup.py)
479483
moreorless==0.4.0
480484
# via bowler
481-
moto==3.1.18
485+
moto==4.1.3
482486
# via feast (setup.py)
483487
msal==1.21.0
484488
# via
@@ -759,7 +763,6 @@ python-json-logger==2.0.7
759763
pytz==2022.7.1
760764
# via
761765
# great-expectations
762-
# moto
763766
# pandas
764767
# snowflake-connector-python
765768
# trino
@@ -1040,7 +1043,7 @@ websocket-client==1.5.1
10401043
# kubernetes
10411044
websockets==10.4
10421045
# via uvicorn
1043-
werkzeug==2.1.2
1046+
werkzeug==2.2.3
10441047
# via moto
10451048
wheel==0.38.4
10461049
# via pip-tools

sdk/python/requirements/py3.8-ci-requirements.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ anyio==3.6.2
3434
# watchfiles
3535
appdirs==1.4.4
3636
# via fissix
37+
appnope==0.1.3
38+
# via
39+
# ipykernel
40+
# ipython
3741
argon2-cffi==21.3.0
3842
# via
3943
# jupyter-server
@@ -466,8 +470,8 @@ makefun==1.15.1
466470
markupsafe==2.1.2
467471
# via
468472
# jinja2
469-
# moto
470473
# nbconvert
474+
# werkzeug
471475
marshmallow==3.19.0
472476
# via great-expectations
473477
matplotlib-inline==0.1.6
@@ -488,7 +492,7 @@ mock==2.0.0
488492
# via feast (setup.py)
489493
moreorless==0.4.0
490494
# via bowler
491-
moto==3.1.18
495+
moto==4.1.3
492496
# via feast (setup.py)
493497
msal==1.21.0
494498
# via
@@ -772,7 +776,6 @@ pytz==2022.7.1
772776
# via
773777
# babel
774778
# great-expectations
775-
# moto
776779
# pandas
777780
# snowflake-connector-python
778781
# trino
@@ -1058,7 +1061,7 @@ websocket-client==1.5.1
10581061
# kubernetes
10591062
websockets==10.4
10601063
# via uvicorn
1061-
werkzeug==2.1.2
1064+
werkzeug==2.2.3
10621065
# via moto
10631066
wheel==0.38.4
10641067
# via pip-tools

0 commit comments

Comments
 (0)