Skip to content

Commit

Permalink
try #17
Browse files Browse the repository at this point in the history
  • Loading branch information
FObersteiner committed Dec 25, 2024
1 parent c9ccb7f commit 0ffa111
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pyfuppes-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.12"] # ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-latest] # , macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
Expand All @@ -32,7 +32,7 @@ jobs:
run: uv run black . --color --diff --check

- name: Run ruff ckecks
run: uv run ruff check
run: uv run ruff check --target-version=py312

- name: Run tests
run: uv run -m pytest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ lint.extend-select = ["I", "C4", "SIM"]
# "C4" : comprehensions
# "TCH" : type checking optimizations
# "SIM" : code simplifications
target-version = "py312"
target-version = "py39"

[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
Expand Down

0 comments on commit 0ffa111

Please sign in to comment.