Skip to content

Commit

Permalink
Merge branch 'main' into refactor/remove-importlib-metadata-fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwb committed Nov 10, 2023
2 parents 0abbfe4 + 6b2e247 commit 2facfea
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ repos:
hooks:
- id: reorder-python-imports
args: [--application-directories, '.:src', --py38-plus]
- repo: https://github.com/psf/black
rev: 23.3.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.10.1
hooks:
- id: black
args: [--line-length=79, --target-version=py38]
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
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 2facfea

Please sign in to comment.