Skip to content

Commit

Permalink
Drop py3.9 from workflow
Browse files Browse the repository at this point in the history
Does not support union type annotations
  • Loading branch information
schaefi committed Jan 12, 2024
1 parent d7fa1cc commit b129bbe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-units-types.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.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
13 changes: 1 addition & 12 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ envlist =
unit_py3_12,
unit_py3_11,
unit_py3_10,
unit_py3_9,
packagedoc


[testenv]
description =
{unit_py3_9,unit_py3_10,unit_py3_11,unit_py3_12}: Unit Test run with basepython set to {basepython}
{unit_py3_10,unit_py3_11,unit_py3_12}: Unit Test run with basepython set to {basepython}
devel: Test KIWI
allowlist_externals =
bash
Expand All @@ -43,7 +42,6 @@ basepython =
unit_py3_12: python3.12
unit_py3_11: python3.11
unit_py3_10: python3.10
unit_py3_9: python3.9
release: python3.10
check: python3
devel: python3
Expand All @@ -55,15 +53,6 @@ deps =
-r.virtualenv.dev-requirements.txt


# Unit Test run with basepython set to 3.9
[testenv:unit_py3_9]
setenv =
PYTHONPATH={toxinidir}/test
changedir=test/unit
commands =
{[testenv:unit]commands}


# Unit Test run with basepython set to 3.10
[testenv:unit_py3_10]
setenv =
Expand Down

0 comments on commit b129bbe

Please sign in to comment.