File tree Expand file tree Collapse file tree 4 files changed +24
-24
lines changed Expand file tree Collapse file tree 4 files changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -35,5 +35,5 @@ transitions==0.9.0
35
35
typed-ast == 1.5.4
36
36
typeguard == 2.13.3
37
37
typing_extensions == 4.3.0
38
- watchdog == 2.1.6
38
+ watchdog == 2.1.9
39
39
wrapt == 1.14.1
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = refind_btrfs
3
- version = 0.5.3
3
+ version = 0.5.4
4
4
description = Generate rEFInd manual boot stanzas from Btrfs snapshots
5
5
long_description = file: README.md
6
6
keywords = rEFInd, btrfs
@@ -27,16 +27,16 @@ package_dir =
27
27
packages = find:
28
28
include_package_data = True
29
29
install_requires =
30
- antlr4-python3-runtime ==4.11.1
31
- injector ==0.20.1
32
- more-itertools ==8.14.0
33
- pid ==3.0.4
34
- semantic-version ==2.10.0
35
- systemd-python ==234
36
- tomlkit ==0.11.4
37
- transitions ==0.9.0
38
- typeguard ==2.13.3
39
- watchdog ==2.1.6
30
+ antlr4-python3-runtime
31
+ injector
32
+ more-itertools
33
+ pid
34
+ semantic-version
35
+ systemd-python
36
+ tomlkit
37
+ transitions
38
+ typeguard
39
+ watchdog
40
40
python_requires = >= 3.9
41
41
42
42
[options.extras_require]
Original file line number Diff line number Diff line change 28
28
29
29
setuptools .setup (
30
30
name = "refind-btrfs" ,
31
- version = "0.5.3 " ,
31
+ version = "0.5.4 " ,
32
32
author = "Luka Žaja" ,
33
33
author_email = "luka.zaja@protonmail.com" ,
34
34
description = "Generate rEFInd manual boot stanzas from Btrfs snapshots" ,
49
49
packages = setuptools .find_packages (where = "src" ),
50
50
include_package_data = True ,
51
51
install_requires = [
52
- "antlr4-python3-runtime ==4.11.1 " ,
53
- "injector ==0.20.1 " ,
54
- "more-itertools ==8.14.0 " ,
55
- "pid ==3.0.4 " ,
56
- "semantic-version ==2.10.0 " ,
57
- "systemd-python ==234 " ,
58
- "tomlkit ==0.11.4 " ,
59
- "transitions ==0.9.0 " ,
60
- "typeguard ==2.13.3 " ,
61
- "watchdog ==2.1.6 " ,
52
+ "antlr4-python3-runtime" ,
53
+ "injector" ,
54
+ "more-itertools" ,
55
+ "pid" ,
56
+ "semantic-version" ,
57
+ "systemd-python" ,
58
+ "tomlkit" ,
59
+ "transitions" ,
60
+ "typeguard" ,
61
+ "watchdog" ,
62
62
],
63
63
entry_points = {
64
64
"console_scripts" : [
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def run(self) -> None:
42
42
43
43
while self .should_keep_running ():
44
44
try :
45
- self .dispatch_events (self .event_queue , self . timeout )
45
+ self .dispatch_events (self .event_queue )
46
46
except queue .Empty :
47
47
continue
48
48
except SnapshotMountedAsRootError as e :
You can’t perform that action at this time.
0 commit comments