Skip to content

Commit

Permalink
Remove python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
webdjoe committed Jan 25, 2025
1 parent c0aec04 commit 7c40e87
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: 'Use Python 3.8'
- name: 'Use Python 3.9'
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.9'
- run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
Expand All @@ -32,19 +32,17 @@ jobs:
python3 -m pip install types-requests
mypy src/pyvesync
name: 'MyPy'
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.11'
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v3
- name: 'Use Python ${{matrix.python-version}}'
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 7c40e87

Please sign in to comment.