Skip to content

Commit 916bbe9

Browse files
minimum Python is 3.11
1 parent c393745 commit 916bbe9

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.11", "3.12", "3.13"]
1414

1515
steps:
1616
- name: Checkout

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Setup project in `src/config/config.toml`. Options include:
2222
* For empty tags (e.g. subtitle or dedication), simply delete or comment out the configuration line
2323

2424
**Requires**:
25-
* Python 3.12
25+
* Python 3.11+
2626
* LilyPond 2.24
2727
* Abjad 3.4
2828
* Auxjad 1.0.10

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Template for projects using Auxjad and Abjad."
44
authors = [{name = "Gilberto Agostinho", email = "gilbertohasnofb@gmail.com"}]
55
readme = "README.md"
66
license = {file = "LICENSE"}
7-
requires-python = ">=3.10"
7+
requires-python = ">=3.11"
88
version = "1.0.0"
99
dynamic = ["dependencies", "optional-dependencies"]
1010

@@ -24,7 +24,7 @@ optional-dependencies.test = {file = ["requirements-test.txt"]}
2424

2525
[tool.black]
2626
line-length = 100
27-
target-version = ["py310", "py311", "py312", "py313"]
27+
target-version = ["py311", "py312", "py313"]
2828

2929
[tool.isort]
3030
profile = "black"

0 commit comments

Comments
 (0)