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

chore(deps): update all non-major dependencies#2580

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
nejch merged 1 commit intomainfromjlvillal/all-minor-patch
May 29, 2023
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions.github/workflows/docs.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,9 +22,9 @@ jobs:
sphinx:
runs-on:ubuntu-20.04
steps:
-uses:actions/checkout@v3.5.0
-uses:actions/checkout@v3.5.2
-name:Set up Python
uses:actions/setup-python@v4.5.0
uses:actions/setup-python@v4.6.1
with:
python-version:"3.11"
-name:Install dependencies
Expand All@@ -42,9 +42,9 @@ jobs:
twine-check:
runs-on:ubuntu-20.04
steps:
-uses:actions/checkout@v3.5.0
-uses:actions/checkout@v3.5.2
-name:Set up Python
uses:actions/setup-python@v4.5.0
uses:actions/setup-python@v4.6.1
with:
python-version:"3.11"
-name:Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions.github/workflows/lint.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,10 +22,10 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.0
- uses: actions/checkout@v3.5.2
with:
fetch-depth: 0
- uses: actions/setup-python@v4.5.0
- uses: actions/setup-python@v4.6.1
with:
python-version: "3.11"
- run: pip install --upgrade tox
Expand Down
4 changes: 2 additions & 2 deletions.github/workflows/pre_commit.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -29,8 +29,8 @@ jobs:
pre_commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.0
- uses: actions/setup-python@v4.5.0
- uses: actions/checkout@v3.5.2
- uses: actions/setup-python@v4.6.1
with:
python-version: "3.11"
- name: install tox
Expand Down
4 changes: 2 additions & 2 deletions.github/workflows/release.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,7 +13,7 @@ jobs:
id-token: write
environment: pypi.org
steps:
- uses: actions/checkout@v3.5.0
- uses: actions/checkout@v3.5.2
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
Expand All@@ -29,7 +29,7 @@ jobs:
echo "::add-mask::${api_token}"
echo "api-token=${api_token}" >> "${GITHUB_OUTPUT}"
- name: Python Semantic Release
uses: relekang/python-semantic-release@v7.33.2
uses: relekang/python-semantic-release@v7.33.5
with:
github_token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
pypi_token: ${{ steps.mint-token.outputs.api-token }}
20 changes: 10 additions & 10 deletions.github/workflows/test.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -48,9 +48,9 @@ jobs:
version: "3.11"
toxenv: py310,smoke
steps:
- uses: actions/checkout@v3.5.0
- uses: actions/checkout@v3.5.2
- name: Set up Python ${{ matrix.python.version }}
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4.6.1
with:
python-version: ${{ matrix.python.version }}
- name: Install dependencies
Expand All@@ -66,9 +66,9 @@ jobs:
matrix:
toxenv: [api_func_v4, cli_func_v4]
steps:
- uses: actions/checkout@v3.5.0
- uses: actions/checkout@v3.5.2
- name: Set up Python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4.6.1
with:
python-version: "3.11"
- name: Install dependencies
Expand All@@ -78,7 +78,7 @@ jobs:
TOXENV: ${{ matrix.toxenv }}
run: tox -- --override-ini='log_cli=True'
- name: Upload codecov coverage
uses: codecov/codecov-action@v3.1.1
uses: codecov/codecov-action@v3.1.4
with:
files: ./coverage.xml
flags: ${{ matrix.toxenv }}
Expand All@@ -87,9 +87,9 @@ jobs:
coverage:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3.5.0
- uses: actions/checkout@v3.5.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4.6.1
with:
python-version: "3.11"
- name: Install dependencies
Expand All@@ -100,7 +100,7 @@ jobs:
TOXENV: cover
run: tox
- name: Upload codecov coverage
uses: codecov/codecov-action@v3.1.1
uses: codecov/codecov-action@v3.1.4
with:
files: ./coverage.xml
flags: unit
Expand DownExpand Up@@ -128,9 +128,9 @@ jobs:
runs-on: ubuntu-latest
needs: [dist]
steps:
- uses: actions/checkout@v3.5.0
- uses: actions/checkout@v3.5.2
- name: Set up Python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v4.6.1
with:
python-version: '3.11'
- uses: actions/download-artifact@v3.0.2
Expand Down
6 changes: 3 additions & 3 deletions.pre-commit-config.yaml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,7 +3,7 @@ default_language_version:

repos:
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 23.3.0
hooks:
- id: black
- repo: https://github.com/commitizen-tools/commitizen
Expand All@@ -20,7 +20,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/pycqa/pylint
rev: v2.17.1
rev: v2.17.4
hooks:
- id: pylint
additional_dependencies:
Expand All@@ -30,7 +30,7 @@ repos:
- requests-toolbelt==0.9.1
files: 'gitlab/'
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.1.1
rev: v1.3.0
hooks:
- id: mypy
args: []
Expand Down
14 changes: 7 additions & 7 deletionsrequirements-lint.txt
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
-r requirements.txt
argcomplete==2.0.0
black==23.1.0
commitizen==3.2.1
black==23.3.0
commitizen==3.2.2
flake8==6.0.0
isort==5.12.0
mypy==1.1.1
pylint==2.17.1
pytest==7.2.2
mypy==1.3.0
pylint==2.17.4
pytest==7.3.1
responses==0.23.1
types-PyYAML==6.0.12.8
types-requests==2.28.11.16
types-PyYAML==6.0.12.10
types-requests==2.31.0.0
types-setuptools==67.8.0.0
2 changes: 1 addition & 1 deletionrequirements-precommit.txt
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
pre-commit==3.2.1
pre-commit==3.3.2
12 changes: 6 additions & 6 deletionsrequirements-test.txt
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
-r requirements.txt
build==0.10.0
coverage==7.2.2
pytest-console-scripts==1.3.1
pytest-cov==4.0.0
pytest-github-actions-annotate-failures==0.1.8
pytest==7.2.2
coverage==7.2.6
pytest-console-scripts==1.4.0
pytest-cov==4.1.0
pytest-github-actions-annotate-failures==0.2.0
pytest==7.3.1
PyYaml==5.4.1
responses==0.23.1
setuptools==67.7.2
setuptools==67.8.0
wheel==0.40.0
2 changes: 1 addition & 1 deletionrequirements.txt
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
requests==2.28.2
requests-toolbelt==1.0.0
typing-extensions==4.5.0 ; python_version < "3.8"
typing-extensions==4.6.2 ; python_version < "3.8"

[8]ページ先頭

©2009-2025 Movatter.jp