Skip to content

Commit

Permalink
Removed argh from watchmedo and replaced with argparse (#836)
Browse files Browse the repository at this point in the history
* Removed argh from watchmedo. Replaced with argparser

* Fixing styling issues

* Removed references to argh

* Added missing aliases for commands tricks and generate-tricks-yaml
  • Loading branch information
lorenzobn committed Sep 27, 2021
1 parent b9774e9 commit 0191c40
Show file tree
Hide file tree
Showing 5 changed files with 279 additions and 263 deletions.
3 changes: 0 additions & 3 deletions README.rst
Expand Up @@ -239,8 +239,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 @@ -284,7 +282,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

0 comments on commit 0191c40

Please sign in to comment.