From 30d8a838c734d502619ff0ea7dc4301b84cc425f Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Wed, 1 Jan 2025 17:46:10 +0100 Subject: [PATCH 1/2] run-tests.yml: Drop EOL Python 3.8 and add Python 3.13 --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 6e94c21..4104ae7 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -19,7 +19,7 @@ jobs: name: Run the test suite strategy: matrix: - python-version: [3.8, 3.12] # no particular need for in-between versions + python-version: [3.9, 3.13] # no particular need for in-between versions runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 From f06d1cd41401e47c6c307efdab1aa073b0c36f20 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Wed, 1 Jan 2025 17:46:33 +0100 Subject: [PATCH 2/2] README.md: Move configparser docs link off of Python 2 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6eb68c5..4dc1fb3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This repository has all of that. The heavy lifting is done by [Caddy](https://caddyserver.com/) and there's a [small tool](Caddyfile.generate) to generate Caddy configuration from a minimal -[ini-like](https://docs.python.org/2/library/configparser.html) +[ini-like](https://docs.python.org/3/library/configparser.html) `sites.cfg` file for you ([see example](sites.cfg.EXAMPLE.gentoo-ev)). Thanks to Abiola Ibrahim ([@abiosoft](https://github.com/abiosoft))