Skip to content

Commit d9fe642

Browse files
authored
Add official Python 3.11 support (#964)
* Adds Python 3.11 to the CI * Adds Py3.11 support in the classifiers Signed-off-by: Eric Brown <[email protected]>
1 parent 3aaa2b0 commit d9fe642

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ body:
6767
label: Python version
6868
description: Run "bandit --version" if unsure of version number
6969
options:
70-
- 3.10 (Default)
70+
- 3.11 (Default)
71+
- 3.10
7172
- 3.9
7273
- 3.8
7374
- 3.7

.github/workflows/pythonpackage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
matrix:
5353
python-version: [
54-
["3.7", "37"], ["3.8", "38"], ["3.9", "39"], ["3.10", "310"], ["3.11.0-a - 3.11", "311"]
54+
["3.7", "37"], ["3.8", "38"], ["3.9", "39"], ["3.10", "310"], ["3.11", "311"]
5555
]
5656
os: [ubuntu-latest, macos-latest]
5757
runs-on: ${{ matrix.os }}

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifier =
2222
Programming Language :: Python :: 3.8
2323
Programming Language :: Python :: 3.9
2424
Programming Language :: Python :: 3.10
25+
Programming Language :: Python :: 3.11
2526
Programming Language :: Python :: 3 :: Only
2627
Topic :: Security
2728
project_urls =

0 commit comments

Comments
 (0)