Skip to content

Commit 4b495d5

Browse files
Require Python 3.10 to support kw_only dataclasses
1 parent d815b10 commit 4b495d5

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/mkdocs-dryrun.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: python
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: '3.9'
27+
python-version: '3.10'
2828

2929
# Install dependencies using Poetry
3030
- uses: Gr1N/setup-poetry@v9

.github/workflows/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
id: python
3737
uses: actions/setup-python@v5
3838
with:
39-
python-version: '3.9'
39+
python-version: '3.10'
4040

4141
# Install dependencies using Poetry
4242
- uses: Gr1N/setup-poetry@v9

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v5
1616
with:
17-
python-version: 3.9
17+
python-version: '3.10'
1818

1919
# Install dependencies using Poetry
2020
- uses: Gr1N/setup-poetry@v9

.github/workflows/python-app.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
- uses: actions/checkout@v4
2727
with:
2828
submodules: 'recursive'
29-
- name: Set up Python 3.9
29+
- name: Set up Python
3030
uses: actions/setup-python@v5
3131
with:
32-
python-version: 3.9
32+
python-version: '3.10'
3333
- uses: Gr1N/setup-poetry@v9
3434
- uses: actions/cache@v4
3535
with:
@@ -60,10 +60,10 @@ jobs:
6060
- uses: actions/checkout@v4
6161
with:
6262
submodules: 'recursive'
63-
- name: Set up Python 3.9
63+
- name: Set up Python
6464
uses: actions/setup-python@v5
6565
with:
66-
python-version: 3.9
66+
python-version: '3.10'
6767
- uses: Gr1N/setup-poetry@v9
6868
- uses: actions/cache@v4
6969
with:
@@ -81,10 +81,10 @@ jobs:
8181
- uses: actions/checkout@v4
8282
with:
8383
submodules: 'recursive'
84-
- name: Set up Python 3.9
84+
- name: Set up Python
8585
uses: actions/setup-python@v5
8686
with:
87-
python-version: 3.9
87+
python-version: '3.10'
8888
- uses: Gr1N/setup-poetry@v9
8989
- uses: actions/cache@v4
9090
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ exclude_also = [
7979
]
8080

8181
[tool.poetry.dependencies]
82-
python = "^3.9"
82+
python = "^3.10"
8383

8484
[tool.poetry.group.dev.dependencies]
8585
pytest = ">=7.4.2,<9.0.0"

0 commit comments

Comments
 (0)