Skip to content

Commit a0f7472

Browse files
feat: Dropping the support for python 3.8 version from feast (#4010)
* Dropping the support for python 3.8 version from feast Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com> Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com> * updating the pyproject.toml to use the python 3.9 version. Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com> Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com> * Dropping the support for python 3.8 but these are required to merge the PR as the PR build needs these files because it runs based on the master files. We will be deleting these files once the PR is merged. Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com> * Adding missed file. dropping the support for python 3.8. Dropping the support for python 3.8 but these are required to merge the PR as the PR build needs these files because it runs based on the master files. We will be deleting these files once the PR is merged. Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com> Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com> * Trying to fix the integration test failures with drop python 3.8 version PR. Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com> Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com> --------- Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com>
1 parent be52772 commit a0f7472

File tree

17 files changed

+77
-55
lines changed

17 files changed

+77
-55
lines changed

.github/fork_workflows/fork_pr_integration_tests_aws.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
fail-fast: false
6969
matrix:
70-
python-version: [ "3.8" ]
70+
python-version: [ "3.9" ]
7171
os: [ ubuntu-latest ]
7272
env:
7373
OS: ${{ matrix.os }}

.github/fork_workflows/fork_pr_integration_tests_gcp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: [ "3.8" ]
12+
python-version: [ "3.9" ]
1313
os: [ ubuntu-latest ]
1414
env:
1515
OS: ${{ matrix.os }}

.github/fork_workflows/fork_pr_integration_tests_snowflake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: [ "3.8" ]
12+
python-version: [ "3.9" ]
1313
os: [ ubuntu-latest ]
1414
env:
1515
OS: ${{ matrix.os }}

.github/workflows/build_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: Setup Python
6060
uses: actions/setup-python@v3
6161
with:
62-
python-version: "3.8"
62+
python-version: "3.9"
6363
architecture: x64
6464
- name: Setup Node
6565
uses: actions/setup-node@v3
@@ -137,7 +137,7 @@ jobs:
137137
strategy:
138138
matrix:
139139
os: [ubuntu-latest, macos-latest ]
140-
python-version: [ "3.8", "3.9", "3.10"]
140+
python-version: ["3.9", "3.10"]
141141
from-source: [ True, False ]
142142
env:
143143
# this script is for testing servers

.github/workflows/java_master_only.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-python@v3
2626
id: setup-python
2727
with:
28-
python-version: "3.8"
28+
python-version: "3.9"
2929
architecture: x64
3030
- name: Authenticate to Google Cloud
3131
uses: 'google-github-actions/auth@v1'
@@ -95,7 +95,7 @@ jobs:
9595
if: github.repository == 'feast-dev/feast'
9696
runs-on: ubuntu-latest
9797
env:
98-
PYTHON: 3.8
98+
PYTHON: 3.9
9999
steps:
100100
- uses: actions/checkout@v3
101101
with:
@@ -110,7 +110,7 @@ jobs:
110110
uses: actions/setup-python@v3
111111
id: setup-python
112112
with:
113-
python-version: 3.8
113+
python-version: 3.9
114114
architecture: x64
115115
- name: Get pip cache dir
116116
id: pip-cache

.github/workflows/java_pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
uses: actions/setup-python@v3
8989
id: setup-python
9090
with:
91-
python-version: "3.8"
91+
python-version: "3.9"
9292
architecture: x64
9393
- name: Authenticate to Google Cloud
9494
uses: 'google-github-actions/auth@v1'
@@ -111,7 +111,7 @@ jobs:
111111
runs-on: ubuntu-latest
112112
needs: unit-test-java
113113
env:
114-
PYTHON: 3.8
114+
PYTHON: 3.9
115115
steps:
116116
- uses: actions/checkout@v3
117117
with:
@@ -128,7 +128,7 @@ jobs:
128128
architecture: x64
129129
- uses: actions/setup-python@v3
130130
with:
131-
python-version: '3.8'
131+
python-version: '3.9'
132132
architecture: 'x64'
133133
- uses: actions/cache@v2
134134
with:
@@ -158,7 +158,7 @@ jobs:
158158
uses: actions/setup-python@v3
159159
id: setup-python
160160
with:
161-
python-version: 3.8
161+
python-version: 3.9
162162
architecture: x64
163163
- name: Get pip cache dir
164164
id: pip-cache

.github/workflows/linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ jobs:
66
lint-python:
77
runs-on: [ubuntu-latest]
88
env:
9-
PYTHON: 3.8
9+
PYTHON: 3.9
1010
steps:
1111
- uses: actions/checkout@v3
1212
- name: Setup Python
1313
id: setup-python
1414
uses: actions/setup-python@v3
1515
with:
16-
python-version: "3.8"
16+
python-version: "3.9"
1717
architecture: x64
1818
- name: Get pip cache dir
1919
id: pip-cache

.github/workflows/master_only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
strategy:
6666
fail-fast: false
6767
matrix:
68-
python-version: [ "3.8", "3.9", "3.10" ]
68+
python-version: ["3.9", "3.10" ]
6969
os: [ ubuntu-latest ]
7070
env:
7171
OS: ${{ matrix.os }}

.github/workflows/nightly-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/setup-python@v3
3737
id: setup-python
3838
with:
39-
python-version: "3.8"
39+
python-version: "3.9"
4040
architecture: x64
4141
- name: Set up AWS SDK
4242
uses: aws-actions/configure-aws-credentials@v1
@@ -124,7 +124,7 @@ jobs:
124124
strategy:
125125
fail-fast: false
126126
matrix:
127-
python-version: [ "3.8" ]
127+
python-version: [ "3.9" ]
128128
os: [ ubuntu-latest ]
129129
env:
130130
OS: ${{ matrix.os }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
architecture: x64
161161
- uses: actions/setup-python@v3
162162
with:
163-
python-version: '3.7'
163+
python-version: '3.9'
164164
architecture: 'x64'
165165
- uses: actions/cache@v2
166166
with:

0 commit comments

Comments
 (0)