Skip to content

Commit 890bfaf

Browse files
authored
chore: Remove py37 support, and unify compatibility matrix from 3.8-3.9 (amundsen-io#2226)
* Remove py37 support, and unify compatibility matrix from 3.8-3.10 Signed-off-by: Kristen Armes <[email protected]> * Remove py3.10 for now, requires other upgrades Signed-off-by: Kristen Armes <[email protected]> * lint Signed-off-by: Kristen Armes <[email protected]> * Upgrade confluent-kafka Signed-off-by: Kristen Armes <[email protected]> * Upgrade feast Signed-off-by: Kristen Armes <[email protected]> * Attempt to fix feast versioning Signed-off-by: Kristen Armes <[email protected]> * lint Signed-off-by: Kristen Armes <[email protected]> --------- Signed-off-by: Kristen Armes <[email protected]>
1 parent 3cfdefe commit 890bfaf

33 files changed

+54
-42
lines changed

.github/workflows/common_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-22.04
1010
strategy:
1111
matrix:
12-
python-version: ["3.7.x"]
12+
python-version: ['3.8.x', '3.9.x']
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v1

.github/workflows/databuilder_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ["3.7.x"]
13+
python-version: ['3.8.x', '3.9.x']
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v1

.github/workflows/deploy_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v2
20-
- name: Setup python 3.7
20+
- name: Setup python 3.8
2121
uses: actions/setup-python@v1
2222
with:
23-
python-version: 3.7
23+
python-version: 3.8
2424
- name: Add wheel dependency
2525
run: pip install wheel
2626
- name: Generate dist

.github/workflows/frontend_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ["3.7.x", "3.8.x"]
13+
python-version: ['3.8.x', '3.9.x']
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v1

.github/workflows/metadata_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ["3.7.x"]
13+
python-version: ['3.8.x', '3.9.x']
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v1

.github/workflows/monthly_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.7
21+
python-version: 3.8
2222
- name: Checkout master
2323
uses: actions/checkout@v2
2424
with:

.github/workflows/noop_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
strategy:
3232
matrix:
33-
python-version: ["3.6.x", "3.7.x", "3.8.x"]
33+
python-version: ['3.8.x', '3.9.x']
3434
steps:
3535
- name: Do nothing
3636
run: exit 0

.github/workflows/search_pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ["3.7.x"]
13+
python-version: ['3.8.x', '3.9.x']
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v1

Dockerfile.frontend.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN npm run dev-build
1414

1515
COPY ./frontend /app
1616

17-
FROM python:3.7-slim
17+
FROM python:3.8-slim
1818
WORKDIR /app
1919

2020
COPY ./frontend /app

Dockerfile.frontend.public

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN npm install
88
COPY ./frontend/amundsen_application/static /app/amundsen_application/static
99
RUN npm run build
1010

11-
FROM python:3.7-slim as base
11+
FROM python:3.8-slim as base
1212
WORKDIR /app
1313
RUN pip3 install gunicorn
1414

0 commit comments

Comments
 (0)