Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Commit ccdd6fa

Browse files
committed
Drop support for python 3.6 and 3.7 in build process
1 parent df4bbb3 commit ccdd6fa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v1
1515
with:
16-
python-version: 3.7
16+
python-version: 3.8
1717
- name: Install Dependencies
1818
run: |
1919
python -m pip install --upgrade pip

.github/workflows/test-and-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
python-version: [3.6, 3.7, 3.8]
10+
python-version: [3.8]
1111
os: [ubuntu-latest, windows-latest, macOS-latest]
1212

1313
steps:
@@ -29,10 +29,10 @@ jobs:
2929

3030
steps:
3131
- uses: actions/checkout@v1
32-
- name: Set up Python 3.7
32+
- name: Set up Python 3.8
3333
uses: actions/setup-python@v1
3434
with:
35-
python-version: 3.7
35+
python-version: 3.8
3636
- name: Install Dependencies
3737
run: |
3838
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)