Skip to content

Commit

Permalink
Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
entorb committed Apr 29, 2024
1 parent 75f6969 commit 514a1a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
check:
runs-on: ubuntu-23.10
runs-on: ubuntu-latest

steps:
- name: checkout repository
Expand All @@ -24,7 +24,7 @@ jobs:
- name: python set up
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
cache: "pip"

- name: python cache set up
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.4.0"
rev: "v0.4.2"
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down Expand Up @@ -116,4 +116,4 @@ repos:
# # - id: perlimports

default_language_version:
python: python3.11
python: python3.12
2 changes: 1 addition & 1 deletion .ruff.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fix = true # auto-fix findings
line-length = 88 # same as Black
target-version = "py311" # Python 3.11
target-version = "py312" # Python 3.12

[lint]
# comment this out to use only default rules (["E4", "E7", "E9", "F"])
Expand Down

0 comments on commit 514a1a9

Please sign in to comment.