Skip to content

Commit f637c5a

Browse files
Merge pull request #33 from MEHRSHAD-MIRSHEKARY/update/deps
Update/deps
2 parents e56168f + 2864ac6 commit f637c5a

File tree

6 files changed

+659
-588
lines changed

6 files changed

+659
-588
lines changed

.pre-commit-config-ci.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
3+
rev: v5.0.0
44
hooks:
55
- id: check-toml
66
- id: check-yaml
@@ -19,17 +19,17 @@ repos:
1919
exclude: (migrations/|tests/|docs/).*
2020

2121
- repo: https://github.com/tox-dev/pyproject-fmt
22-
rev: 2.2.1
22+
rev: v2.5.0
2323
hooks:
2424
- id: pyproject-fmt
2525

2626
- repo: https://github.com/tox-dev/tox-ini-fmt
27-
rev: 1.3.1
27+
rev: 1.5.0
2828
hooks:
2929
- id: tox-ini-fmt
3030

3131
- repo: https://github.com/asottile/pyupgrade
32-
rev: v3.15.2
32+
rev: v3.19.1
3333
hooks:
3434
- id: pyupgrade
3535

@@ -40,20 +40,20 @@ repos:
4040
exclude: (migrations/|tests/|docs/).*
4141

4242
- repo: https://github.com/psf/black
43-
rev: 23.3.0
43+
rev: 25.1.0
4444
hooks:
4545
- id: black
4646
args: [ "--config=pyproject.toml" ]
4747
exclude: (migrations/|tests/|docs/).*
4848

4949
- repo: https://github.com/commitizen-tools/commitizen
50-
rev: v3.28.0
50+
rev: v4.2.1
5151
hooks:
5252
- id: commitizen
5353
exclude: (migrations/|tests/|docs/).*
5454

5555
- repo: https://github.com/PyCQA/bandit
56-
rev: 1.7.4
56+
rev: 1.8.2
5757
hooks:
5858
- id: bandit
5959
args: [ "-c", "pyproject.toml", "-r", "." ]
@@ -68,7 +68,7 @@ repos:
6868
exclude: (migrations/|tests/|docs/).*
6969

7070
- repo: https://github.com/adamchainz/blacken-docs
71-
rev: 1.18.0
71+
rev: 1.19.1
7272
hooks:
7373
- id: blacken-docs
7474
additional_dependencies:

.pre-commit-config.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
3+
rev: v5.0.0
44
hooks:
55
- id: check-toml
66
- id: check-yaml
@@ -19,17 +19,17 @@ repos:
1919
exclude: (migrations/|tests/|docs/).*
2020

2121
- repo: https://github.com/tox-dev/pyproject-fmt
22-
rev: 2.2.1
22+
rev: v2.5.0
2323
hooks:
2424
- id: pyproject-fmt
2525

2626
- repo: https://github.com/tox-dev/tox-ini-fmt
27-
rev: 1.3.1
27+
rev: 1.5.0
2828
hooks:
2929
- id: tox-ini-fmt
3030

3131
- repo: https://github.com/asottile/pyupgrade
32-
rev: v3.15.2
32+
rev: v3.19.1
3333
hooks:
3434
- id: pyupgrade
3535

@@ -40,20 +40,20 @@ repos:
4040
exclude: (migrations/|tests/|docs/).*
4141

4242
- repo: https://github.com/psf/black
43-
rev: 23.3.0
43+
rev: 25.1.0
4444
hooks:
4545
- id: black
4646
args: [ "--config=pyproject.toml" ]
4747
exclude: (migrations/|tests/|docs/).*
4848

4949
- repo: https://github.com/commitizen-tools/commitizen
50-
rev: v3.28.0
50+
rev: v4.2.1
5151
hooks:
5252
- id: commitizen
5353
exclude: (migrations/|tests/|docs/).*
5454

5555
- repo: https://github.com/PyCQA/bandit
56-
rev: 1.7.4
56+
rev: 1.8.2
5757
hooks:
5858
- id: bandit
5959
args: [ "-c", "pyproject.toml", "-r", "." ]
@@ -68,7 +68,7 @@ repos:
6868
exclude: (migrations/|tests/|docs/).*
6969

7070
- repo: https://github.com/adamchainz/blacken-docs
71-
rev: 1.18.0
71+
rev: 1.19.1
7272
hooks:
7373
- id: blacken-docs
7474
additional_dependencies:

packages/requirements-dev.txt

Lines changed: 50 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,81 @@
11
alabaster==0.7.16 ; python_version >= "3.9" and python_version < "4.0"
22
annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0"
3-
argcomplete==3.5.1 ; python_version >= "3.9" and python_version < "4.0"
3+
argcomplete==3.5.3 ; python_version >= "3.9" and python_version < "4.0"
44
asgiref==3.8.1 ; python_version >= "3.9" and python_version < "4.0"
5-
astroid==3.3.5 ; python_version >= "3.9" and python_version < "4.0"
6-
babel==2.16.0 ; python_version >= "3.9" and python_version < "4.0"
7-
bandit[toml]==1.7.10 ; python_version >= "3.9" and python_version < "4.0"
5+
astroid==3.3.8 ; python_version >= "3.9" and python_version < "4.0"
6+
babel==2.17.0 ; python_version >= "3.9" and python_version < "4.0"
7+
bandit[toml]==1.8.2 ; python_version >= "3.9" and python_version < "4.0"
88
black==24.10.0 ; python_version >= "3.9" and python_version < "4.0"
9-
cachetools==5.5.0 ; python_version >= "3.9" and python_version < "4.0"
10-
certifi==2024.8.30 ; python_version >= "3.9" and python_version < "4.0"
9+
cachetools==5.5.1 ; python_version >= "3.9" and python_version < "4.0"
10+
certifi==2025.1.31 ; python_version >= "3.9" and python_version < "4.0"
1111
cfgv==3.4.0 ; python_version >= "3.9" and python_version < "4.0"
1212
chardet==5.2.0 ; python_version >= "3.9" and python_version < "4.0"
13-
charset-normalizer==3.4.0 ; python_version >= "3.9" and python_version < "4.0"
13+
charset-normalizer==3.4.1 ; python_version >= "3.9" and python_version < "4.0"
1414
click-option-group==0.5.6 ; python_version >= "3.9" and python_version < "4"
15-
click==8.1.7 ; python_version >= "3.9" and python_version < "4.0"
15+
click==8.1.8 ; python_version >= "3.9" and python_version < "4.0"
1616
codecov==2.1.13 ; python_version >= "3.9" and python_version < "4.0"
1717
colorama==0.4.6 ; python_version >= "3.9" and python_version < "4.0"
18-
commitizen==3.29.1 ; python_version >= "3.9" and python_version < "4.0"
19-
coverage==7.6.2 ; python_version >= "3.9" and python_version < "4.0"
20-
coverage[toml]==7.6.2 ; python_version >= "3.9" and python_version < "4.0"
18+
commitizen==3.31.0 ; python_version >= "3.9" and python_version < "4.0"
19+
coverage==7.6.11 ; python_version >= "3.9" and python_version < "4.0"
20+
coverage[toml]==7.6.11 ; python_version >= "3.9" and python_version < "4.0"
2121
decli==0.6.2 ; python_version >= "3.9" and python_version < "4.0"
2222
dill==0.3.9 ; python_version >= "3.9" and python_version < "4.0"
23-
distlib==0.3.8 ; python_version >= "3.9" and python_version < "4.0"
24-
django-stubs-ext==5.1.0 ; python_version >= "3.9" and python_version < "4.0"
25-
django-stubs==5.1.0 ; python_version >= "3.9" and python_version < "4.0"
26-
django==4.2.16 ; python_version >= "3.9" and python_version < "3.10"
27-
django==5.1.2 ; python_version >= "3.10" and python_version < "4.0"
23+
distlib==0.3.9 ; python_version >= "3.9" and python_version < "4.0"
24+
django-stubs-ext==5.1.3 ; python_version >= "3.9" and python_version < "4.0"
25+
django-stubs==5.1.3 ; python_version >= "3.9" and python_version < "4.0"
26+
django==4.2.19 ; python_version >= "3.9" and python_version < "3.10"
27+
django==5.1.6 ; python_version >= "3.10" and python_version < "4.0"
2828
djangorestframework==3.15.2 ; python_version >= "3.9" and python_version < "4.0"
2929
docformatter==1.7.5 ; python_version >= "3.9" and python_version < "4.0"
3030
docutils==0.19 ; python_version >= "3.9" and python_version < "4.0"
3131
dotty-dict==1.3.1 ; python_version >= "3.9" and python_version < "4.0"
3232
exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11"
33-
filelock==3.16.1 ; python_version >= "3.9" and python_version < "4.0"
34-
gitdb==4.0.11 ; python_version >= "3.9" and python_version < "4.0"
35-
gitpython==3.1.43 ; python_version >= "3.9" and python_version < "4.0"
36-
identify==2.6.1 ; python_version >= "3.9" and python_version < "4.0"
33+
filelock==3.17.0 ; python_version >= "3.9" and python_version < "4.0"
34+
gitdb==4.0.12 ; python_version >= "3.9" and python_version < "4.0"
35+
gitpython==3.1.44 ; python_version >= "3.9" and python_version < "4.0"
36+
identify==2.6.7 ; python_version >= "3.9" and python_version < "4.0"
3737
idna==3.10 ; python_version >= "3.9" and python_version < "4.0"
3838
imagesize==1.4.1 ; python_version >= "3.9" and python_version < "4.0"
39-
importlib-metadata==8.5.0 ; python_version >= "3.9" and python_version < "3.10"
40-
importlib-resources==6.4.5 ; python_version >= "3.9" and python_version < "4.0"
39+
importlib-metadata==8.6.1 ; python_version >= "3.9" and python_version < "3.10"
40+
importlib-resources==6.5.2 ; python_version >= "3.9" and python_version < "4.0"
4141
iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
4242
isort==5.13.2 ; python_version >= "3.9" and python_version < "4.0"
43-
jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4.0"
43+
jinja2==3.1.5 ; python_version >= "3.9" and python_version < "4.0"
4444
markdown-it-py==3.0.0 ; python_version >= "3.9" and python_version < "4.0"
45-
markupsafe==3.0.1 ; python_version >= "3.9" and python_version < "4.0"
45+
markupsafe==3.0.2 ; python_version >= "3.9" and python_version < "4.0"
4646
mccabe==0.7.0 ; python_version >= "3.9" and python_version < "4.0"
4747
mdurl==0.1.2 ; python_version >= "3.9" and python_version < "4.0"
4848
mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4.0"
49-
mypy==1.11.2 ; python_version >= "3.9" and python_version < "4.0"
49+
mypy==1.15.0 ; python_version >= "3.9" and python_version < "4.0"
5050
nodeenv==1.9.1 ; python_version >= "3.9" and python_version < "4.0"
51-
packaging==24.1 ; python_version >= "3.9" and python_version < "4.0"
51+
packaging==24.2 ; python_version >= "3.9" and python_version < "4.0"
5252
pathspec==0.12.1 ; python_version >= "3.9" and python_version < "4.0"
53-
pbr==6.1.0 ; python_version >= "3.9" and python_version < "4.0"
53+
pbr==6.1.1 ; python_version >= "3.9" and python_version < "4.0"
5454
platformdirs==4.3.6 ; python_version >= "3.9" and python_version < "4.0"
5555
pluggy==1.5.0 ; python_version >= "3.9" and python_version < "4.0"
5656
pre-commit==3.8.0 ; python_version >= "3.9" and python_version < "4.0"
57-
prompt-toolkit==3.0.36 ; python_version >= "3.9" and python_version < "4.0"
58-
pydantic-core==2.23.4 ; python_version >= "3.9" and python_version < "4.0"
59-
pydantic==2.9.2 ; python_version >= "3.9" and python_version < "4.0"
60-
pygments==2.18.0 ; python_version >= "3.9" and python_version < "4.0"
61-
pylint-django==2.5.5 ; python_version >= "3.9" and python_version < "4.0"
57+
prompt-toolkit==3.0.50 ; python_version >= "3.9" and python_version < "4.0"
58+
pydantic-core==2.27.2 ; python_version >= "3.9" and python_version < "4.0"
59+
pydantic==2.10.6 ; python_version >= "3.9" and python_version < "4.0"
60+
pygments==2.19.1 ; python_version >= "3.9" and python_version < "4.0"
61+
pylint-django==2.6.1 ; python_version >= "3.9" and python_version < "4.0"
6262
pylint-plugin-utils==0.8.2 ; python_version >= "3.9" and python_version < "4.0"
63-
pylint==3.3.1 ; python_version >= "3.9" and python_version < "4.0"
64-
pyproject-api==1.8.0 ; python_version >= "3.9" and python_version < "4.0"
63+
pylint==3.3.4 ; python_version >= "3.9" and python_version < "4.0"
64+
pyproject-api==1.9.0 ; python_version >= "3.9" and python_version < "4.0"
65+
pytest-asyncio==0.25.3 ; python_version >= "3.9" and python_version < "4.0"
6566
pytest-cov==5.0.0 ; python_version >= "3.9" and python_version < "4.0"
6667
pytest-django==4.9.0 ; python_version >= "3.9" and python_version < "4.0"
67-
pytest==8.3.3 ; python_version >= "3.9" and python_version < "4.0"
68+
pytest==8.3.4 ; python_version >= "3.9" and python_version < "4.0"
6869
python-gitlab==4.13.0 ; python_version >= "3.9" and python_version < "4.0"
69-
python-semantic-release==9.10.0 ; python_version >= "3.9" and python_version < "4.0"
70+
python-semantic-release==9.18.1 ; python_version >= "3.9" and python_version < "4.0"
7071
pyyaml==6.0.2 ; python_version >= "3.9" and python_version < "4.0"
71-
questionary==2.0.1 ; python_version >= "3.9" and python_version < "4.0"
72+
questionary==2.1.0 ; python_version >= "3.9" and python_version < "4.0"
7273
requests-toolbelt==1.0.0 ; python_version >= "3.9" and python_version < "4.0"
7374
requests==2.32.3 ; python_version >= "3.9" and python_version < "4.0"
74-
rich==13.9.2 ; python_version >= "3.9" and python_version < "4.0"
75+
rich==13.9.4 ; python_version >= "3.9" and python_version < "4.0"
76+
setuptools==75.8.0 ; python_version >= "3.9" and python_version < "4.0"
7577
shellingham==1.5.4 ; python_version >= "3.9" and python_version < "4.0"
76-
smmap==5.0.1 ; python_version >= "3.9" and python_version < "4.0"
78+
smmap==5.0.2 ; python_version >= "3.9" and python_version < "4.0"
7779
snowballstemmer==2.2.0 ; python_version >= "3.9" and python_version < "4.0"
7880
sphinx-rtd-theme==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
7981
sphinx==6.2.1 ; python_version >= "3.9" and python_version < "4.0"
@@ -84,17 +86,17 @@ sphinxcontrib-jquery==4.1 ; python_version >= "3.9" and python_version < "4.0"
8486
sphinxcontrib-jsmath==1.0.1 ; python_version >= "3.9" and python_version < "4.0"
8587
sphinxcontrib-qthelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
8688
sphinxcontrib-serializinghtml==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
87-
sqlparse==0.5.1 ; python_version >= "3.9" and python_version < "4.0"
88-
stevedore==5.3.0 ; python_version >= "3.9" and python_version < "4.0"
89+
sqlparse==0.5.3 ; python_version >= "3.9" and python_version < "4.0"
90+
stevedore==5.4.0 ; python_version >= "3.9" and python_version < "4.0"
8991
termcolor==2.5.0 ; python_version >= "3.9" and python_version < "4.0"
90-
tomli==2.0.2 ; python_version >= "3.9" and python_full_version <= "3.11.0a6"
92+
tomli==2.2.1 ; python_version >= "3.9" and python_full_version <= "3.11.0a6"
9193
tomlkit==0.13.2 ; python_version >= "3.9" and python_version < "4.0"
92-
tox==4.21.2 ; python_version >= "3.9" and python_version < "4.0"
93-
types-pyyaml==6.0.12.20240917 ; python_version >= "3.9" and python_version < "4.0"
94+
tox==4.24.1 ; python_version >= "3.9" and python_version < "4.0"
95+
types-pyyaml==6.0.12.20241230 ; python_version >= "3.9" and python_version < "4.0"
9496
typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "4.0"
95-
tzdata==2024.2 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32"
97+
tzdata==2025.1 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32"
9698
untokenize==0.1.1 ; python_version >= "3.9" and python_version < "4.0"
97-
urllib3==2.2.3 ; python_version >= "3.9" and python_version < "4.0"
98-
virtualenv==20.26.6 ; python_version >= "3.9" and python_version < "4.0"
99+
urllib3==2.3.0 ; python_version >= "3.9" and python_version < "4.0"
100+
virtualenv==20.29.1 ; python_version >= "3.9" and python_version < "4.0"
99101
wcwidth==0.2.13 ; python_version >= "3.9" and python_version < "4.0"
100-
zipp==3.20.2 ; python_version >= "3.9" and python_version < "3.10"
102+
zipp==3.21.0 ; python_version >= "3.9" and python_version < "3.10"

packages/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
asgiref==3.8.1 ; python_version >= "3.9" and python_version < "4.0"
2-
django==4.2.16 ; python_version >= "3.9" and python_version < "3.10"
3-
django==5.1.2 ; python_version >= "3.10" and python_version < "4.0"
2+
django==4.2.19 ; python_version >= "3.9" and python_version < "3.10"
3+
django==5.1.6 ; python_version >= "3.10" and python_version < "4.0"
44
djangorestframework==3.15.2 ; python_version >= "3.9" and python_version < "4.0"
5-
sqlparse==0.5.1 ; python_version >= "3.9" and python_version < "4.0"
5+
sqlparse==0.5.3 ; python_version >= "3.9" and python_version < "4.0"
66
typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "3.11"
7-
tzdata==2024.2 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32"
7+
tzdata==2025.1 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32"

0 commit comments

Comments
 (0)