Skip to content

Commit a255dfa

Browse files
authored
More Python version related fixes (#1327)
* Put python versions in quotes for the publish build step. This is required, since the publish of 1.9.0 failed as 3.10 mapped to 3.1. * Also dropped Bandit versions over 2 years old from bug template Signed-off-by: Eric Brown <[email protected]>
1 parent 3f07bb0 commit a255dfa

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,12 @@ body:
4444
label: Bandit version
4545
description: Run "bandit --version" if unsure of version number
4646
options:
47-
- 1.8.3 (Default)
47+
- 1.9.1 (Default)
48+
- 1.9.0
49+
- 1.8.6
50+
- 1.8.5
51+
- 1.8.4
52+
- 1.8.3
4853
- 1.8.2
4954
- 1.8.1
5055
- 1.8.0
@@ -53,12 +58,6 @@ body:
5358
- 1.7.8
5459
- 1.7.7
5560
- 1.7.6
56-
- 1.7.5
57-
- 1.7.4
58-
- 1.7.3
59-
- 1.7.2
60-
- 1.7.1
61-
- 1.7.0
6261
validations:
6362
required: true
6463

@@ -68,7 +67,8 @@ body:
6867
label: Python version
6968
description: Run "bandit --version" if unsure of version number
7069
options:
71-
- "3.13 (Default)"
70+
- "3.14 (Default)"
71+
- "3.13"
7272
- "3.12"
7373
- "3.11"
7474
- "3.10"

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python 3.10
1717
uses: actions/setup-python@v6
1818
with:
19-
python-version: 3.10
19+
python-version: "3.10"
2020

2121
- name: Install dependencies
2222
run: pip install tox wheel

.github/workflows/publish-to-test-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python 3.10
1717
uses: actions/setup-python@v6
1818
with:
19-
python-version: 3.10
19+
python-version: "3.10"
2020

2121
- name: Install dependencies
2222
run: pip install tox wheel

0 commit comments

Comments
 (0)