Skip to content

Commit 213a55e

Browse files
committed
removed build for python 3.6 in github actions
1 parent 3d8ac31 commit 213a55e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.6", "3.7"]
15+
python-version: ["3.7"]
1616
steps:
1717
- name: checkout
1818
uses: actions/checkout@v3
1919
- name: setup-python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: '3.6'
22+
python-version: '3.7'
2323
cache: 'pip'
2424
- name: install-requirements
2525
run: pip install -r requirements.txt

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: setup-python
1616
uses: actions/setup-python@v4
1717
with:
18-
python-version: '3.6'
18+
python-version: '3.7'
1919
cache: 'pip'
2020
- name: install-requirements
2121
run: pip install -r requirements.txt

0 commit comments

Comments
 (0)