Drop support for Python 3.8 3.9

This commit is contained in:
Sheng
2025-07-27 18:46:27 +08:00
parent a7a704f111
commit 9cfd5b799a
3 changed files with 7 additions and 7 deletions

View File

@@ -16,14 +16,14 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install pytest pytest-cov -r requirements.txt
- run: pip install pytest==8.1.2 pytest-cov -r requirements.txt
- run: pytest --cov=webssh
- run: mkdir -p coverage
- uses: tj-actions/coverage-badge-py@v2