Skip to content

Commit

Permalink
Removed version pinning, fixed watchdog observer crashing
Browse files Browse the repository at this point in the history
  • Loading branch information
Luka Žaja committed Nov 4, 2022
1 parent 08d462c commit 06f53a8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ transitions==0.9.0
typed-ast==1.5.4
typeguard==2.13.3
typing_extensions==4.3.0
watchdog==2.1.6
watchdog==2.1.9
wrapt==1.14.1
22 changes: 11 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = refind_btrfs
version = 0.5.3
version = 0.5.4
description = Generate rEFInd manual boot stanzas from Btrfs snapshots
long_description = file: README.md
keywords = rEFInd, btrfs
Expand All @@ -27,16 +27,16 @@ package_dir =
packages = find:
include_package_data = True
install_requires =
antlr4-python3-runtime ==4.11.1
injector ==0.20.1
more-itertools ==8.14.0
pid ==3.0.4
semantic-version ==2.10.0
systemd-python ==234
tomlkit ==0.11.4
transitions ==0.9.0
typeguard ==2.13.3
watchdog ==2.1.6
antlr4-python3-runtime
injector
more-itertools
pid
semantic-version
systemd-python
tomlkit
transitions
typeguard
watchdog
python_requires = >= 3.9

[options.extras_require]
Expand Down
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

setuptools.setup(
name="refind-btrfs",
version="0.5.3",
version="0.5.4",
author="Luka Žaja",
author_email="[email protected]",
description="Generate rEFInd manual boot stanzas from Btrfs snapshots",
Expand All @@ -49,16 +49,16 @@
packages=setuptools.find_packages(where="src"),
include_package_data=True,
install_requires=[
"antlr4-python3-runtime ==4.11.1",
"injector ==0.20.1",
"more-itertools ==8.14.0",
"pid ==3.0.4",
"semantic-version ==2.10.0",
"systemd-python ==234",
"tomlkit ==0.11.4",
"transitions ==0.9.0",
"typeguard ==2.13.3",
"watchdog ==2.1.6",
"antlr4-python3-runtime",
"injector",
"more-itertools",
"pid",
"semantic-version",
"systemd-python",
"tomlkit",
"transitions",
"typeguard",
"watchdog",
],
entry_points={
"console_scripts": [
Expand Down
2 changes: 1 addition & 1 deletion src/refind_btrfs/service/snapshot_observer.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def run(self) -> None:

while self.should_keep_running():
try:
self.dispatch_events(self.event_queue, self.timeout)
self.dispatch_events(self.event_queue)
except queue.Empty:
continue
except SnapshotMountedAsRootError as e:
Expand Down

0 comments on commit 06f53a8

Please sign in to comment.