Skip to content

Commit 7c40e87

Browse files
committed
Remove python 3.8
1 parent c0aec04 commit 7c40e87

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/tests.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- name: Checkout repo
1313
uses: actions/checkout@v3
14-
- name: 'Use Python 3.8'
14+
- name: 'Use Python 3.9'
1515
uses: actions/setup-python@v4
1616
with:
17-
python-version: '3.8'
17+
python-version: '3.9'
1818
- run: |
1919
python -m pip install --upgrade pip
2020
pip install -r requirements.txt
@@ -32,19 +32,17 @@ jobs:
3232
python3 -m pip install types-requests
3333
mypy src/pyvesync
3434
name: 'MyPy'
35-
3635
pytest:
3736
runs-on: ubuntu-latest
3837
strategy:
3938
matrix:
4039
python-version:
41-
- '3.8'
4240
- '3.9'
4341
- '3.10'
44-
- '3.11'
42+
- '3.11'
4543
steps:
4644
- name: Checkout repo
47-
uses: actions/checkout@v3
45+
uses: actions/checkout@v3
4846
- name: 'Use Python ${{matrix.python-version}}'
4947
uses: actions/setup-python@v4
5048
with:

0 commit comments

Comments
 (0)