| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python313-watchdog | Distribution: openSUSE Tumbleweed |
| Version: 6.0.0 | Vendor: openSUSE |
| Release: 3.1 | Build date: Tue Aug 26 11:33:09 2025 |
| Group: Unspecified | Build host: reproducible |
| Size: 594408 | Source RPM: python-watchdog-6.0.0-3.1.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Url: https://github.com/gorakhargosh/watchdog | |
| Summary: Filesystem events monitoring | |
Python API and shell utilities to monitor file system events.
Apache-2.0
* Tue Aug 26 2025 Markéta Machová <mmachova@suse.com>
- Convert to libalternatives on SLE-16-based and newer systems
* Fri Jun 13 2025 Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
* Tue Jan 07 2025 Adrian Schröter <adrian@suse.de>
- update to 6.0.0:
- Breaking Changes
- [inotify] Use of select.poll() instead of deprecated
select.select(), if available.
- [utils] Removed the unused echo_class() function from the
echo module.
- [utils] Removed the unused echo_instancemethod() function
from the echo module.
- [utils] Removed the unused echo_module() function from the
echo module.
- [utils] Removed the unused is_class_private_name() function
from the echo module.
- [utils] Removed the unused is_classmethod() function from
the echo module.
- [utils] Removed the unused is_method(met() function from
the echo module.
- [utils] Removed the unused method_name() function from the
echo module.
- [utils] Removed the unused name() function from the echo
module.
- [watchmedo] Removed the --trace CLI argument from the
watchmedo log command, useless since events are logged by
default at the LoggerTrick class level.
- Other Changes Pin test dependecies.
- [docs] Add typing info to quick start.
- [inotify] Fix reading inotify file descriptor after closing
it.
- [utils] The stop_signal keyword-argument type of the
AutoRestartTrick class can now be either a signal.Signals
or an int.
- [utils] Added the __repr__() method to the Trick class.
- [watchmedo] Fixed Mypy issues.
- [watchmedo] Added the __repr__() method to the
HelpFormatter class.
- [windows] Fixed Mypy issues.
- Switch off test coverage measurement.
- Skip test test_select_fd (gh#gorakhargosh/watchdog!1086 ?)
* Thu Jun 13 2024 Dirk Müller <dmueller@suse.com>
- update to 4.0.1:
* [inotify] Fix missing event_filter for the full emitter
* Sat Mar 16 2024 Dirk Müller <dmueller@suse.com>
- update to 4.0.0:
* Drop support for Python 3.7.
* Add support for Python 3.12.
* [snapshot] Add typing to dirsnapshot
* [snapshot] Added DirectorySnapshotDiff.ContextManager
* [events] FileSystemEvent, and subclasses, are now
dataclass``es, and their ``repr() has changed
* [windows] WinAPINativeEvent is now a dataclass, and its
repr() has changed
* [events] Log FileOpenedEvent, and FileClosedEvent, events in
LoggingEventHandler
* [tests] Improve FileSystemEvent coverage
* [watchmedo] Log all events in LoggerTrick
* [windows] The observers.read_directory_changes.WATCHDOG_TRAVE
RSE_MOVED_DIR_DELAY hack was removed. The constant will be
kept to prevent breaking other softwares.
* Thanks to our beloved contributors: @BoboTiG, @msabramo
* Sun Jun 11 2023 ecsos <ecsos@opensuse.org>
- Add %{?sle15_python_module_pythons}
- Fix build error for Leap
Generate doc only for Leap because it rise up an syntax error in
version.py
* Mon Mar 20 2023 Dirk Müller <dmueller@suse.com>
- update to 3.0.0:
* Drop support for Python 3.6.
* ``watchdog`` is now PEP 561 compatible, and tested with
``mypy``
* Fix missing ``>`` in ``FileSystemEvent.__repr__()``
* [ci] Lots of improvements
* [inotify] Return from ``InotifyEmitter.queue_events()`` if
not launched when thread is inactive
* [tests] Stability improvements
* [utils] Remove handling of ``threading.Event.isSet`` spelling
* [watchmedo] Fixed tricks YAML generation
* Tue Feb 28 2023 Dirk Müller <dmueller@suse.com>
- update to 2.3.1:
* Run ``black`` on the entire source code
* Bundle the ``requirements-tests.txt`` file in the source
distribution
* [watchmedo] Exclude ``FileOpenedEvent`` events from
``AutoRestartTrick``, and ``ShellCommandTrick``, to restore
watchdog < 2.3.0 behavior. A better solution should be found
in the future.
* [watchmedo] Log ``FileOpenedEvent``, and ``FileClosedEvent``,
events in ``LoggerTrick``
* [inotify] Add support for ``IN_OPEN`` events: a
``FileOpenedEvent`` event will be fired
* [watchmedo] Add optional event debouncing for ``auto-
restart``, only restarting once if many events happen in
quick succession (``--debounce-interval``)
* [watchmedo] Exit gracefully on ``KeyboardInterrupt``
exception (Ctrl+C)
* [watchmedo] Add option to not auto-restart the command after
it exits (``--no-restart-on-command-exit``)
* Mon Jan 02 2023 Dirk Müller <dmueller@suse.com>
- update to v2.2.1:
* [ci] Set the expected Python version when building release files
* [ci] Update actions versions in use
* [watchmedo] [regression] Fix usage of missing signal.SIGHUP attribute on
non-Unix OSes (#935)
* Tue Dec 13 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to version 2.2.0
* 2022-12-05 • full history
[build] Wheels are now available for Python 3.11 (#932)
[documentation] HTML documentation builds are now tested for errors (#902)
[documentation] Fix typos here, and there (#910)
[fsevents2] The fsevents2 observer is now deprecated (#909)
[tests] The error message returned by musl libc for error code -1 is now allowed (#923)
[utils] Remove unnecessary code in dirsnapshot.py (#930)
[watchmedo] Handle shutdown events from SIGHUP (#912)
Thanks to our beloved contributors: @kurtmckee, @babymastodon, @QuantumEnergyE, @timgates42, @BoboTiG
* Sat Jul 23 2022 Dirk Müller <dmueller@suse.com>
- update to 2.1.9:
* [fsevents] Fix flakey test to assert that there are no errors when stopping the emitter.
* [inotify] Suppress occasional ``OSError: [Errno 9] Bad file descriptor`` at shutdown.
* [watchmedo] Make ``auto-restart`` restart the sub-process if it terminates.
* [watchmedo] Avoid zombie sub-processes when running ``shell-command`` without ``--wait``.
* Fix adding failed emitters on observer schedule.
* [inotify] Fix hang when unscheduling watch on a path in an unmounted filesystem.
* [watchmedo] Fix broken parsing of ``--kill-after`` argument for the ``auto-restart`` command.
* [watchmedo] Fix broken parsing of boolean arguments.
* [watchmedo] Fix broken parsing of commands from ``auto-restart``, and ``shell-command``.
* [watchmedo] Support setting verbosity level via ``-q/--quiet`` and ``-v/--verbose`` arguments.
* Thanks to our beloved contributors: @taleinat, @kianmeng, @palfrey, @IlayRosenberg, @BoboTiG
* Eliminate timeout in waiting on event queue.
* [inotify] Fix ``not`` equality implementation for ``InotifyEvent``.
* [watchmedo] Fix calling commands from within a Python script.
* [watchmedo] ``PyYAML`` is loaded only when strictly necessary.
/usr/bin/watchmedo /usr/bin/watchmedo-3.13 /usr/lib/python3.13/site-packages/watchdog /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/INSTALLER /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/METADATA /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/RECORD /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/REQUESTED /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/WHEEL /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/entry_points.txt /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/licenses /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/licenses/AUTHORS /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/licenses/COPYING /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/licenses/LICENSE /usr/lib/python3.13/site-packages/watchdog-6.0.0.dist-info/top_level.txt /usr/lib/python3.13/site-packages/watchdog/__init__.py /usr/lib/python3.13/site-packages/watchdog/__pycache__ /usr/lib/python3.13/site-packages/watchdog/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/__pycache__/events.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/__pycache__/events.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/__pycache__/version.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/__pycache__/version.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/__pycache__/watchmedo.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/__pycache__/watchmedo.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/events.py /usr/lib/python3.13/site-packages/watchdog/observers /usr/lib/python3.13/site-packages/watchdog/observers/__init__.py /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__ /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/api.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/api.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/fsevents.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/fsevents.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/fsevents2.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/fsevents2.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/inotify.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/inotify.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/inotify_buffer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/inotify_buffer.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/inotify_c.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/inotify_c.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/kqueue.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/kqueue.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/polling.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/polling.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/read_directory_changes.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/read_directory_changes.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/winapi.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/observers/__pycache__/winapi.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/observers/api.py /usr/lib/python3.13/site-packages/watchdog/observers/fsevents.py /usr/lib/python3.13/site-packages/watchdog/observers/fsevents2.py /usr/lib/python3.13/site-packages/watchdog/observers/inotify.py /usr/lib/python3.13/site-packages/watchdog/observers/inotify_buffer.py /usr/lib/python3.13/site-packages/watchdog/observers/inotify_c.py /usr/lib/python3.13/site-packages/watchdog/observers/kqueue.py /usr/lib/python3.13/site-packages/watchdog/observers/polling.py /usr/lib/python3.13/site-packages/watchdog/observers/read_directory_changes.py /usr/lib/python3.13/site-packages/watchdog/observers/winapi.py /usr/lib/python3.13/site-packages/watchdog/py.typed /usr/lib/python3.13/site-packages/watchdog/tricks /usr/lib/python3.13/site-packages/watchdog/tricks/__init__.py /usr/lib/python3.13/site-packages/watchdog/tricks/__pycache__ /usr/lib/python3.13/site-packages/watchdog/tricks/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/tricks/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils /usr/lib/python3.13/site-packages/watchdog/utils/__init__.py /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__ /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/bricks.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/bricks.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/delayed_queue.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/delayed_queue.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/dirsnapshot.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/dirsnapshot.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/echo.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/echo.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/event_debouncer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/event_debouncer.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/patterns.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/patterns.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/platform.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/platform.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/process_watcher.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/watchdog/utils/__pycache__/process_watcher.cpython-313.pyc /usr/lib/python3.13/site-packages/watchdog/utils/bricks.py /usr/lib/python3.13/site-packages/watchdog/utils/delayed_queue.py /usr/lib/python3.13/site-packages/watchdog/utils/dirsnapshot.py /usr/lib/python3.13/site-packages/watchdog/utils/echo.py /usr/lib/python3.13/site-packages/watchdog/utils/event_debouncer.py /usr/lib/python3.13/site-packages/watchdog/utils/patterns.py /usr/lib/python3.13/site-packages/watchdog/utils/platform.py /usr/lib/python3.13/site-packages/watchdog/utils/process_watcher.py /usr/lib/python3.13/site-packages/watchdog/version.py /usr/lib/python3.13/site-packages/watchdog/watchmedo.py /usr/share/doc/packages/python313-watchdog /usr/share/doc/packages/python313-watchdog/AUTHORS /usr/share/doc/packages/python313-watchdog/MANIFEST.in /usr/share/doc/packages/python313-watchdog/README.rst /usr/share/doc/packages/python313-watchdog/changelog.rst /usr/share/libalternatives/watchmedo /usr/share/libalternatives/watchmedo/1313.conf /usr/share/licenses/python313-watchdog /usr/share/licenses/python313-watchdog/COPYING /usr/share/licenses/python313-watchdog/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Fri Oct 31 23:33:49 2025