From 55102a17aaf28eb0e45b9d6a1766b85fa435cc75 Mon Sep 17 00:00:00 2001 From: Jamie Taylor Date: Mon, 3 Nov 2025 11:50:49 +0000 Subject: [PATCH] Remove Python 3.10 --- .github/workflows/python-app.yml | 2 +- ruff.toml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 ruff.toml diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index cf538c1..65d056e 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.10", "3.11", "3.12" ] + python-version: [ "3.11", "3.12", "3.13" ] steps: - uses: actions/checkout@v2 diff --git a/ruff.toml b/ruff.toml new file mode 100644 index 0000000..0bd5797 --- /dev/null +++ b/ruff.toml @@ -0,0 +1,5 @@ +line-length = 100 + +[format] +quote-style = "double" +indent-style = "space" \ No newline at end of file