Skip to content

Commit 856b2e5

Browse files
authored
Merge pull request #3155 from endiz/fix/remove_python38_ref
Remove/Change Python 3.8 References
2 parents ce4736a + 05d37be commit 856b2e5

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

.github/workflows/security.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
include:
15-
- python-version: 3.8
16-
toxenv: safety
1715
- python-version: 3.9
1816
toxenv: safety
1917
- python-version: 3.10.9

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ repos:
1010
- id: bandit
1111
entry: bandit -ll --exclude=tests/ --skip=B303
1212
additional_dependencies:
13-
- importlib-metadata<5; python_version < '3.8'
13+
- importlib-metadata<5; python_version < '3.9'

conf/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ requirements:
5353
attr: version
5454
module: sys
5555
type: python_module
56-
version: 3.8.0
56+
version: 3.9.0
5757
users:
5858
blue:
5959
blue: admin

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sonar.sources=./app
1111
# Encoding of the source code. Default is default system encoding
1212
#sonar.sourceEncoding=UTF-8
1313

14-
sonar.python.version=3.8,3.9,3.10,3.11
14+
sonar.python.version=3.9,3.10,3.11
1515
sonar.python.coverage.reportPaths=coverage.xml
1616

1717
# Make an exception to Link's constructor, since it requires a refactor to pass

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[tox]
77
skipsdist = True
88
envlist =
9-
py{38,39,310,311,312}
9+
py{39,310,311,312}
1010
style
1111
coverage
1212
safety

0 commit comments

Comments
 (0)