Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed argh from watchmedo and replaced with argparse #836

Merged
merged 4 commits into from Sep 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 0 additions & 3 deletions README.rst
Expand Up @@ -238,8 +238,6 @@ Dependencies
1. Python 3.6 or above.
2. XCode_ (only on macOS when installing from sources)
3. PyYAML_ (only for ``watchmedo``)
4. argh_ (only for ``watchmedo``)


Licensing
---------
Expand Down Expand Up @@ -283,7 +281,6 @@ to do:
.. _changelog: https://github.com/gorakhargosh/watchdog/blob/master/changelog.rst

.. _homebrew: https://brew.sh/
.. _argh: https://pypi.python.org/pypi/argh
.. _PyYAML: https://www.pyyaml.org/
.. _XCode: https://developer.apple.com/technologies/tools/xcode.html
.. _LibYAML: https://pyyaml.org/wiki/LibYAML
Expand Down
1 change: 0 additions & 1 deletion docs/source/global.rst.inc
Expand Up @@ -18,7 +18,6 @@
.. _GetQueuedCompletionStatus: https://docs.microsoft.com/windows/win32/api/ioapiset/nf-ioapiset-getqueuedcompletionstatus
.. _CreateIoCompletionPort: https://docs.microsoft.com/windows/win32/api/ioapiset/nf-ioapiset-createiocompletionport

.. _argh: https://pypi.python.org/pypi/argh
.. _coverage: https://coverage.readthedocs.io/en/latest/
.. _file.monitor: https://github.com/pke/file.monitor
.. _fsmonitor: https://github.com/shaurz/fsmonitor
Expand Down
2 changes: 0 additions & 2 deletions docs/source/installation.rst
Expand Up @@ -65,8 +65,6 @@ using the ``watchmedo`` utility.
+=====================+=============+=============+=============+=============+
| PyYAML_ | Yes | Yes | Yes | Yes |
+---------------------+-------------+-------------+-------------+-------------+
| argh_ | Yes | Yes | Yes | Yes |
+---------------------+-------------+-------------+-------------+-------------+

Installing Dependencies
~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -78,7 +78,7 @@
]

extras_require = {
'watchmedo': ['PyYAML>=3.10', 'argh>=0.24.1'],
'watchmedo': ['PyYAML>=3.10'],
}

with open('README.rst', encoding='utf-8') as f:
Expand Down