Skip to content

Commit 1cebbf4

Browse files
committed
ci(.github/workflows): drop Python 3.6 from CI/CD
Python 3.6 is EOL, ubuntu-latest runner no longer support it
1 parent d034362 commit 1cebbf4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest]
15-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
15+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1616

1717
steps:
1818
- uses: actions/checkout@v3

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v3
2020
with:
21-
python-version: '3.6'
21+
python-version: '3.7'
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)