Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- macos-local

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install dependencies
run: |
pdm install -dG test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_lint_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ tox = "tox --parallel auto"
[tool.pdm.dev-dependencies]
lint = [
"codespell~=2.2.6", # https://github.com/codespell-project/codespell (latest: 2.2.6)
"pylint~=3.1.0", # https://github.com/pylint-dev/pylint (latest: 3.1.0)
"pylint~=4.0.5", # https://github.com/pylint-dev/pylint (latest: 3.1.0)
"requests>=2.31.0", # https://github.com/psf/requests (latest: 2.31.0)
"ruff~=0.3.7", # https://github.com/astral-sh/ruff (latest: 0.3.7)
"safety==3.1.0", # https://github.com/pyupio/safety (latest: 3.1.0)
]
test = [
"pytest~=8.1.1", # https://github.com/pytest-dev/pytest (latest: 8.1.1)
"pytest~=9.0.2", # https://github.com/pytest-dev/pytest (latest: 8.1.1)
"pytest-mock~=3.14.0", # https://github.com/pytest-dev/pytest-mock/ (latest: 3.14.0)
"pytest-sugar~=1.0.0", # https://github.com/Teemu/pytest-sugar (latest: 1.0.0)
]
Expand Down