8000 Update Python versions in the CI workflow. by ezio-melotti · Pull Request #590 · python/miss-islington · GitHub
[go: up one dir, main page]

Skip to content

Update Python versions in the CI workflow. #590

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 2, 2023
Merged
Prev Previous commit
Next Next commit
Decouple "-dev" suffix from version list.
  • Loading branch information
ezio-melotti authored Dec 25, 2022
commit 49e1f6f757c7071df9065e112d877b7cf9a97b6b
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12-dev"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
# Workaround for actions/setup-python#508
dev: ["-dev"]

steps:
- uses: actions/checkout@v2
Expand All @@ -25,7 +27,7 @@ jobs:
${{ runner.os }}-pip-
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}${{ matrix.dev }}
- run: python3 -m pip install -U -r dev-requirements.txt
- run: pytest --cov=. --cov-report=xml
- uses: codecov/codecov-action@v2
Expand Down
0