Skip to content

Commit

Permalink
ci: Update correct Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarolopez committed Jun 7, 2024
1 parent 350ef83 commit 66e6e4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
12 changes: 1 addition & 11 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
min_version = 4.3.3
isolated_build = true
envlist =
py3{8, 9, 10, 11, 12}
py3{10, 11, 12}
flake8
black
bandit
Expand Down Expand Up @@ -46,16 +46,6 @@ commands =
find . -type f -name "*.pyc" -delete
poetry run pytest {posargs}

[testenv:py38]
basepython = python3.8
commands_pre =
poetry install --no-root --sync --with test

[testenv:py39]
basepython = python3.9
commands_pre =
poetry install --no-root --sync --with test

[testenv:py310]
basepython = python3.10
commands_pre =
Expand Down

0 comments on commit 66e6e4d

Please sign in to comment.