Skip to content

Commit bd056b2

Browse files
authored
Merge branch 'master' into toan/loadscope-retain-ordering
2 parents a5bd9b6 + 532f07f commit bd056b2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020

2121
- name: Build and Check Package
22-
uses: hynek/build-and-inspect-python-package@v2.12
22+
uses: hynek/build-and-inspect-python-package@v2.13
2323

2424
deploy:
2525
needs: package

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: Build and Check Package
25-
uses: hynek/build-and-inspect-python-package@v2.12
25+
uses: hynek/build-and-inspect-python-package@v2.13
2626

2727
test:
2828

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: "v0.11.11"
3+
rev: "v0.12.0"
44
hooks:
55
- id: ruff
66
args: ["--fix"]
@@ -23,7 +23,7 @@ repos:
2323
language: python
2424
additional_dependencies: [pygments, restructuredtext_lint]
2525
- repo: https://github.com/pre-commit/mirrors-mypy
26-
rev: v1.15.0
26+
rev: v1.16.1
2727
hooks:
2828
- id: mypy
2929
files: ^(src/|testing/)

testing/test_workermanage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ def test_rsync_roots_no_roots(
206206
p = Path(p)
207207
print("remote curdir", p)
208208
assert p == dest.joinpath(config.rootpath.name)
209-
assert p.joinpath("dir1").check()
210-
assert p.joinpath("dir1", "file1").check()
209+
assert p.joinpath("dir1").is_dir()
210+
assert p.joinpath("dir1", "file1").is_file()
211211

212212
def test_popen_rsync_subdir(
213213
self,

0 commit comments

Comments
 (0)