Skip to content

Commit 6c017e6

Browse files
committed
⬆️ deps: bump deps
1 parent 717d530 commit 6c017e6

File tree

4 files changed

+79
-78
lines changed

4 files changed

+79
-78
lines changed

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ classifiers = [
1818
]
1919
dependencies = [
2020
"aiofiles>=24.1.0",
21-
"colored>=2.2.4",
22-
"typing-extensions>=4.12.2",
23-
"watchfiles>=1.0.0",
21+
"colored>=2.3.0",
22+
"typing-extensions>=4.13.2",
23+
"watchfiles>=1.0.5",
2424
]
2525

2626
[project.urls]
@@ -34,10 +34,10 @@ watchfs = "watchfs.__main__:main"
3434

3535
[dependency-groups]
3636
dev = [
37-
"pyright>=1.1.389",
38-
"ruff>=0.8.1",
39-
"pytest>=8.3.4",
40-
"pytest-rerunfailures>=15.0",
37+
"pyright>=1.1.400",
38+
"ruff>=0.11.9",
39+
"pytest>=8.3.5",
40+
"pytest-rerunfailures>=15.1",
4141
"tomli>=2.2.1",
4242
]
4343

src/watchfs/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from typing import TYPE_CHECKING
88

99
from aiofiles.os import wrap
10-
from colored import Back, Fore # type: ignore
10+
from colored import Back, Fore
1111
from watchfiles import Change, awatch # type: ignore
1212

1313
from watchfs import __version__
@@ -122,7 +122,7 @@ async def main():
122122
filters.append(ChangeCacheFilter())
123123

124124
combined_filter = combine_filters(filters)
125-
print(f"Starting watch {', '.join(f"{src_dst[0]} -> {src_dst[1]}" for src_dst in parsed_sync_mapping)}")
125+
print(f"Starting watch {', '.join(f'{src_dst[0]} -> {src_dst[1]}' for src_dst in parsed_sync_mapping)}")
126126
print("Press Ctrl+C to exit.")
127127
try:
128128
await asyncio.gather(*[sync(src_dir, dst_dir, combined_filter) for src_dir, dst_dir in parsed_sync_mapping])

src/watchfs/colorful.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
from colored import Back, Fore, Style # type: ignore
3+
from colored import Back, Fore, Style
44

55

66
class Badge:

0 commit comments

Comments
 (0)