Skip to content

Commit 06f53a8

Browse files
author
Luka Žaja
committed
Removed version pinning, fixed watchdog observer crashing
1 parent 08d462c commit 06f53a8

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ transitions==0.9.0
3535
typed-ast==1.5.4
3636
typeguard==2.13.3
3737
typing_extensions==4.3.0
38-
watchdog==2.1.6
38+
watchdog==2.1.9
3939
wrapt==1.14.1

setup.cfg

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = refind_btrfs
3-
version = 0.5.3
3+
version = 0.5.4
44
description = Generate rEFInd manual boot stanzas from Btrfs snapshots
55
long_description = file: README.md
66
keywords = rEFInd, btrfs
@@ -27,16 +27,16 @@ package_dir =
2727
packages = find:
2828
include_package_data = True
2929
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
4040
python_requires = >= 3.9
4141

4242
[options.extras_require]

setup.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
setuptools.setup(
3030
name="refind-btrfs",
31-
version="0.5.3",
31+
version="0.5.4",
3232
author="Luka Žaja",
3333
author_email="luka.zaja@protonmail.com",
3434
description="Generate rEFInd manual boot stanzas from Btrfs snapshots",
@@ -49,16 +49,16 @@
4949
packages=setuptools.find_packages(where="src"),
5050
include_package_data=True,
5151
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",
6262
],
6363
entry_points={
6464
"console_scripts": [

src/refind_btrfs/service/snapshot_observer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def run(self) -> None:
4242

4343
while self.should_keep_running():
4444
try:
45-
self.dispatch_events(self.event_queue, self.timeout)
45+
self.dispatch_events(self.event_queue)
4646
except queue.Empty:
4747
continue
4848
except SnapshotMountedAsRootError as e:

0 commit comments

Comments
 (0)