Skip to content

Commit 8bcefae

Browse files
Ernst79bdraco
andauthored
fix: bump pycryptodomex (#61)
* fix: bump pycryptodomex * fix: update poetry lock file * fix: update poetry lock file * chore: run poetry update --------- Co-authored-by: J. Nick Koston <nick@koston.org>
1 parent 1d403f0 commit 8bcefae

File tree

6 files changed

+860
-756
lines changed

6 files changed

+860
-756
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
python-version:
39-
- "3.9"
4039
- "3.10"
4140
- "3.11"
41+
- "3.12"
4242
os:
4343
- ubuntu-latest
4444
runs-on: ${{ matrix.os }}

.github/workflows/labels.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
labels:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Set up Python
16-
uses: actions/setup-python@v3
16+
uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.8
18+
python-version: 3.12
1919
- name: Install labels
2020
run: pip install labels
2121
- name: Sync config with Github

.pre-commit-config.yaml

+13-15
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414
- id: commitizen
1515
stages: [commit-msg]
1616
- repo: https://github.com/pre-commit/pre-commit-hooks
17-
rev: v4.4.0
17+
rev: v4.5.0
1818
hooks:
1919
- id: debug-statements
2020
- id: check-builtin-literals
@@ -28,39 +28,37 @@ repos:
2828
- id: end-of-file-fixer
2929
- id: trailing-whitespace
3030
- id: debug-statements
31-
- repo: https://github.com/pre-commit/mirrors-prettier
32-
rev: v2.7.1
33-
hooks:
34-
- id: prettier
35-
args: ["--tab-width", "2"]
31+
# - repo: https://github.com/pre-commit/mirrors-prettier
32+
# rev: v3.1.0
33+
# hooks:
34+
# - id: prettier
3635
- repo: https://github.com/asottile/pyupgrade
37-
rev: v3.4.0
36+
rev: v3.15.0
3837
hooks:
3938
- id: pyupgrade
40-
args: [--py37-plus]
4139
- repo: https://github.com/PyCQA/isort
42-
rev: 5.12.0
40+
rev: 5.13.2
4341
hooks:
4442
- id: isort
45-
- repo: https://github.com/psf/black
46-
rev: 23.3.0
43+
- repo: https://github.com/psf/black-pre-commit-mirror
44+
rev: 23.12.1
4745
hooks:
4846
- id: black
4947
- repo: https://github.com/codespell-project/codespell
50-
rev: v2.2.4
48+
rev: v2.2.6
5149
hooks:
5250
- id: codespell
5351
- repo: https://github.com/PyCQA/flake8
54-
rev: 6.0.0
52+
rev: 7.0.0
5553
hooks:
5654
- id: flake8
5755
- repo: https://github.com/pre-commit/mirrors-mypy
58-
rev: v1.3.0
56+
rev: v1.8.0
5957
hooks:
6058
- id: mypy
6159
additional_dependencies: []
6260
- repo: https://github.com/PyCQA/bandit
63-
rev: 1.7.4
61+
rev: 1.7.6
6462
hooks:
6563
- id: bandit
6664
args: [-x, tests]

0 commit comments

Comments
 (0)