Skip to content

Commit

Permalink
Don't test in python < 3.11 any longer
Browse files Browse the repository at this point in the history
  • Loading branch information
andsens committed May 10, 2024
1 parent f33a312 commit 20b22ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.11', '3.12']
steps:
- name: Checkout the project
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ shipped as a single file.
To reduce the amount of code added to the it, the script will only contain a
parser made for that specific help text. For that reason there is no need for
the generator itself to be written in bash, instead that part is written in
Python 3. Though, this also means that you have to regenerate your parser every
time you change the help text (see link:#on-the-fly-parser-generation[On-the-fly
Python 3.11. Though, this also means that you have to regenerate your parser
every time you change the help text (see link:#on-the-fly-parser-generation[On-the-fly
parser generation] for automating that part while developing).

==== Local vs. global variables
Expand Down

0 comments on commit 20b22ae

Please sign in to comment.