Skip to content

Commit 7bd2f7b

Browse files
committed
Don't test in python < 3.11 any longer
1 parent 241fb7f commit 7bd2f7b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
strategy:
4444
matrix:
45-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
45+
python-version: ['3.11', '3.12']
4646
steps:
4747
- name: Checkout the project
4848
uses: actions/checkout@v4

README.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ shipped as a single file.
9696
To reduce the amount of code added to the it, the script will only contain a
9797
parser made for that specific help text. For that reason there is no need for
9898
the generator itself to be written in bash, instead that part is written in
99-
Python 3. Though, this also means that you have to regenerate your parser every
100-
time you change the help text (see link:#on-the-fly-parser-generation[On-the-fly
99+
Python 3.11. Though, this also means that you have to regenerate your parser
100+
every time you change the help text (see link:#on-the-fly-parser-generation[On-the-fly
101101
parser generation] for automating that part while developing).
102102

103103
==== Local vs. global variables

0 commit comments

Comments
 (0)