Skip to content

Commit

Permalink
Add: Officially support Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernricks committed Jan 26, 2024
1 parent f005f45 commit 69c3dbf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
uses: greenbone/workflows/.github/workflows/lint-python.yml@main
with:
linter: ruff
Expand All @@ -30,6 +31,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -52,6 +54,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
uses: greenbone/workflows/.github/workflows/test-python.yml@main
with:
python-version: ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
]
Expand Down Expand Up @@ -55,7 +56,7 @@ myst-parser = ">=2.0.0"

[tool.black]
line-length = 80
target-version = ['py39', 'py310', 'py311']
target-version = ['py39', 'py310', 'py311', 'py312']
exclude = '''
/(
\.git
Expand Down

0 comments on commit 69c3dbf

Please sign in to comment.