Skip to content

Commit 417b4e4

Browse files
committed
Upgrade dependencies.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent cd3b1e0 commit 417b4e4

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
- "3.12"
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v3
20-
- uses: actions/setup-python@v4
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- run: python -m pip install -r requirements.txt

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ module = [
2424
ignore_missing_imports = true
2525

2626
[tool.ruff]
27+
src = ["."]
28+
target-version = "py38"
29+
30+
[tool.ruff.lint]
2731
# See https://github.com/charliermarsh/ruff#rules for error code definitions.
2832
select = [
2933
"ANN", # annotations
@@ -72,5 +76,3 @@ extend-ignore = [
7276
"S603", # `subprocess` call: check for execution of untrusted input
7377
"S607", # Starting a process with a partial executable path
7478
]
75-
src = ["."]
76-
target-version = "py38"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-e .
22
mypy
3-
ruff~=0.1.3
3+
ruff~=0.2.2

0 commit comments

Comments
 (0)