Skip to content

Commit

Permalink
workflows: test against py310 as minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Dec 14, 2024
1 parent 1ac9cbc commit 184d0f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
shellcheck tests/*.sh
- name: Setup venv
run: |
uv venv --python 3.11
uv venv --python 3.10
- name: Test steamrt install
run: |
source .venv/bin/activate
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
strategy:
matrix:
version: ["3.11"]
version: ["3.10"]

runs-on: ubuntu-latest

Expand All @@ -28,10 +28,10 @@ jobs:
python3 -m pip install --upgrade pip uv mypy
- name: Setup venv
run: |
uv venv --python 3.11
uv venv --python 3.10
source .venv/bin/activate
uv pip install -r requirements.in
- name: Check types with mypy
run: |
source .venv/bin/activate
mypy --python-version 3.11 .
mypy .
2 changes: 1 addition & 1 deletion .github/workflows/umu-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
# tomllib requires Python 3.11
# Ubuntu latest (Jammy) provides Python 3.10
version: ["3.11", "3.12", "3.13"]
version: ["3.10", "3.11", "3.12", "3.13"]

runs-on: ubuntu-latest

Expand Down

0 comments on commit 184d0f3

Please sign in to comment.