Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6ad4ce6

Browse files
renovate[bot]JohnVillalovos
authored andcommitted
chore(deps): update all non-major dependencies
1 parent795f83c commit6ad4ce6

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

‎.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
-uses:actions/checkout@v4.2.2
2626
-name:Set up Python
27-
uses:actions/setup-python@v5.4.0
27+
uses:actions/setup-python@v5.5.0
2828
with:
2929
python-version:"3.13"
3030
-name:Install dependencies
@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
-uses:actions/checkout@v4.2.2
4141
-name:Set up Python
42-
uses:actions/setup-python@v5.4.0
42+
uses:actions/setup-python@v5.5.0
4343
with:
4444
python-version:"3.13"
4545
-name:Install dependencies

‎.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
-uses:actions/checkout@v4.2.2
2626
with:
2727
fetch-depth:0
28-
-uses:actions/setup-python@v5.4.0
28+
-uses:actions/setup-python@v5.5.0
2929
with:
3030
python-version:"3.13"
3131
-run:pip install --upgrade tox

‎.github/workflows/pre_commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on:ubuntu-latest
3131
steps:
3232
-uses:actions/checkout@v4.2.2
33-
-uses:actions/setup-python@v5.4.0
33+
-uses:actions/setup-python@v5.5.0
3434
with:
3535
python-version:"3.13"
3636
-name:install tox

‎.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
steps:
5151
-uses:actions/checkout@v4.2.2
5252
-name:Set up Python ${{ matrix.python.version }}
53-
uses:actions/setup-python@v5.4.0
53+
uses:actions/setup-python@v5.5.0
5454
with:
5555
python-version:${{ matrix.python.version }}
5656
-name:Install dependencies
@@ -69,7 +69,7 @@ jobs:
6969
steps:
7070
-uses:actions/checkout@v4.2.2
7171
-name:Set up Python
72-
uses:actions/setup-python@v5.4.0
72+
uses:actions/setup-python@v5.5.0
7373
with:
7474
python-version:"3.13"
7575
-name:Install dependencies
@@ -91,7 +91,7 @@ jobs:
9191
steps:
9292
-uses:actions/checkout@v4.2.2
9393
-name:Set up Python ${{ matrix.python-version }}
94-
uses:actions/setup-python@v5.4.0
94+
uses:actions/setup-python@v5.5.0
9595
with:
9696
python-version:"3.13"
9797
-name:Install dependencies
@@ -114,15 +114,15 @@ jobs:
114114
name:Python wheel
115115
steps:
116116
-uses:actions/checkout@v4.2.2
117-
-uses:actions/setup-python@v5.4.0
117+
-uses:actions/setup-python@v5.5.0
118118
with:
119119
python-version:"3.13"
120120
-name:Install dependencies
121121
run:|
122122
pip install -r requirements-test.txt
123123
-name:Build package
124124
run:python -m build -o dist/
125-
-uses:actions/upload-artifact@v4.6.1
125+
-uses:actions/upload-artifact@v4.6.2
126126
with:
127127
name:dist
128128
path:dist
@@ -133,10 +133,10 @@ jobs:
133133
steps:
134134
-uses:actions/checkout@v4.2.2
135135
-name:Set up Python
136-
uses:actions/setup-python@v5.4.0
136+
uses:actions/setup-python@v5.5.0
137137
with:
138138
python-version:'3.13'
139-
-uses:actions/download-artifact@v4.1.9
139+
-uses:actions/download-artifact@v4.2.1
140140
with:
141141
name:dist
142142
path:dist

‎.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ repos:
77
hooks:
88
-id:black
99
-repo:https://github.com/commitizen-tools/commitizen
10-
rev:v4.4.1
10+
rev:v4.5.0
1111
hooks:
1212
-id:commitizen
1313
stages:[commit-msg]
1414
-repo:https://github.com/pycqa/flake8
15-
rev:7.1.2
15+
rev:7.2.0
1616
hooks:
1717
-id:flake8
1818
-repo:https://github.com/pycqa/isort
1919
rev:6.0.1
2020
hooks:
2121
-id:isort
2222
-repo:https://github.com/pycqa/pylint
23-
rev:v3.3.5
23+
rev:v3.3.6
2424
hooks:
2525
-id:pylint
2626
additional_dependencies:
@@ -51,6 +51,6 @@ repos:
5151
-id:rst-directive-colons
5252
-id:rst-inline-touching-normal
5353
-repo:https://github.com/maxbrunet/pre-commit-renovate
54-
rev:39.205.1
54+
rev:39.227.2
5555
hooks:
5656
-id:renovate-config-validator

‎requirements-lint.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
-r requirements.txt
22
argcomplete==2.0.0
33
black==25.1.0
4-
commitizen==4.4.1
5-
flake8==7.1.2
4+
commitizen==4.5.0
5+
flake8==7.2.0
66
isort==6.0.1
77
mypy==1.15.0
8-
pylint==3.3.5
8+
pylint==3.3.6
99
pytest==8.3.5
1010
responses==0.25.7
1111
respx==0.22.0
12-
types-PyYAML==6.0.12.20241230
13-
types-requests==2.32.0.20250306
12+
types-PyYAML==6.0.12.20250402
13+
types-requests==2.32.0.20250328
1414
types-setuptools==76.0.0.20250313

‎requirements-precommit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pre-commit==4.1.0
1+
pre-commit==4.2.0

‎requirements-test.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
-r requirements.txt
22
anyio==4.9.0
33
build==1.2.2.post1
4-
coverage==7.7.0
4+
coverage==7.8.0
55
pytest-console-scripts==1.4.1
6-
pytest-cov==6.0.0
6+
pytest-cov==6.1.1
77
pytest-github-actions-annotate-failures==0.3.0
88
pytest==8.3.5
99
PyYaml==6.0.2

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp