Skip to content

Commit 2ab8e4c

Browse files
committed
Update dependency to python 3.9 (black requires python >=3.9)
Signed-off-by: Thomas Günther <[email protected]>
1 parent f7fb239 commit 2ab8e4c

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Python
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: 3.8
31+
python-version: '3.9'
3232

3333
- name: Install Graphviz
3434
shell: bash

.github/workflows/pre-commit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
- uses: actions/checkout@v4
1010
- uses: actions/setup-python@v5
1111
with:
12-
python-version: '3.8'
12+
python-version: '3.9'
1313
- uses: pre-commit/[email protected]

.github/workflows/test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: 3.8
20+
python-version: '3.9'
2121

2222
- name: Install Python dependencies
2323
run: |
@@ -44,7 +44,7 @@ jobs:
4444
- name: Setup Python
4545
uses: actions/setup-python@v5
4646
with:
47-
python-version: 3.8
47+
python-version: '3.9'
4848

4949
- name: Install Graphviz
5050
shell: bash

pyproject.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ dependencies = [
1515
"chevron",
1616
]
1717

18-
requires-python = ">=3.8"
18+
requires-python = ">=3.9"
1919

2020
classifiers = [
2121
"Development Status :: 5 - Production/Stable",
2222

2323
"License :: OSI Approved :: Apache Software License",
2424

25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
28-
"Programming Language :: Python :: 3.11"
27+
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2929
]
3030

3131
[project.urls]
@@ -55,6 +55,5 @@ build-backend = "setuptools.build_meta"
5555
[tool.setuptools]
5656
include-package-data = true
5757

58-
5958
[tool.black]
6059
line-length = 120

0 commit comments

Comments
 (0)