Skip to content

Commit

Permalink
Add: Official Support for Python 3.13
Browse files Browse the repository at this point in the history
Run linting, tests and type checks for Python 3.13 too.
  • Loading branch information
bjoernricks committed Jan 21, 2025
1 parent c740c9f commit 2e79dc6
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
uses: greenbone/workflows/.github/workflows/lint-python.yml@main
with:
lint-packages: gvm tests
Expand All @@ -31,6 +32,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
uses: greenbone/workflows/.github/workflows/test-python.yml@main
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -45,6 +47,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Run mypy
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand All @@ -46,7 +47,7 @@ types-paramiko = "^3.4.0.20240205"

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

0 comments on commit 2e79dc6

Please sign in to comment.