Skip to content

Commit

Permalink
Add official support of Python 3.12 (#1068)
Browse files Browse the repository at this point in the history
Python 3.12 was released on Monday Oct 2. Bandit should be built
and tested on this version going forward.

Signed-off-by: Eric Brown <eric_wade_brown@yahoo.com>
  • Loading branch information
ericwb committed Nov 10, 2023
1 parent 9a2884e commit 6b2e247
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yml
Expand Up @@ -68,7 +68,8 @@ body:
label: Python version
description: Run "bandit --version" if unsure of version number
options:
- "3.11 (Default)"
- "3.12 (Default)"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/pythonpackage.yml
Expand Up @@ -47,7 +47,11 @@ jobs:
strategy:
matrix:
python-version: [
["3.8", "38"], ["3.9", "39"], ["3.10", "310"], ["3.11", "311"]
["3.8", "38"],
["3.9", "39"],
["3.10", "310"],
["3.11", "311"],
["3.12", "312"],
]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -22,6 +22,7 @@ classifier =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3 :: Only
Topic :: Security
project_urls =
Expand Down

0 comments on commit 6b2e247

Please sign in to comment.