Skip to content

Commit e459c75

Browse files
authored
chore: keep cloudstile up-to-date
* chore: fix tests being scanned * chore: update dependencies and workflows * fix: mypy using 3.9 syntax
1 parent 29fa53f commit e459c75

5 files changed

Lines changed: 606 additions & 438 deletions

File tree

.github/workflows/bandit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
# Report only issues of a given confidence level or higher. Can be LOW, MEDIUM or HIGH. Default is UNDEFINED (everything)
4545
# confidence: # optional, default is UNDEFINED
4646
# comma-separated list of paths (glob patterns supported) to exclude from scan (note that these are in addition to the excluded paths provided in the config file) (default: .svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg)
47-
# excluded_paths: # optional, default is DEFAULT
47+
excluded_paths: "*/tests/**"
4848
# comma-separated list of test IDs to skip
4949
# skips: # optional, default is DEFAULT
5050
# path to a .bandit file that supplies command line arguments

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1717

1818
steps:
1919
- name: Checkout code

.mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.9
2+
python_version = 3.10
33
disallow_untyped_calls = True
44
disallow_untyped_defs = True
55
strict_optional = True

0 commit comments

Comments
 (0)