|
@@ -1,6 +1,6 @@
|
|
|
Metadata-Version: 2.1
|
|
|
Name: argcomplete
|
|
|
-Version: 3.1.2
|
|
|
+Version: 3.1.3
|
|
|
Summary: Bash tab completion for argparse
|
|
|
Home-page: https://github.com/kislyuk/argcomplete
|
|
|
Author: Andrey Kislyuk
|
|
@@ -24,6 +24,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
Classifier: Programming Language :: Python :: 3.9
|
|
|
Classifier: Programming Language :: Python :: 3.10
|
|
|
Classifier: Programming Language :: Python :: 3.11
|
|
|
+Classifier: Programming Language :: Python :: 3.12
|
|
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
Classifier: Development Status :: 5 - Production/Stable
|
|
@@ -31,11 +32,10 @@ Classifier: Topic :: Software Development
|
|
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
Classifier: Topic :: System :: Shells
|
|
|
Classifier: Topic :: Terminals
|
|
|
-Requires-Python: >=3.6
|
|
|
+Requires-Python: >=3.8
|
|
|
Description-Content-Type: text/x-rst
|
|
|
License-File: LICENSE.rst
|
|
|
License-File: NOTICE
|
|
|
-Requires-Dist: importlib-metadata <7,>=0.23 ; python_version < "3.8"
|
|
|
Provides-Extra: test
|
|
|
Requires-Dist: coverage ; extra == 'test'
|
|
|
Requires-Dist: pexpect ; extra == 'test'
|
|
@@ -264,7 +264,7 @@ multiple Python versions on the same system, the version being used to run the s
|
|
|
|
|
|
When using bash, global completion requires bash support for ``complete -D``, which was introduced in bash 4.2. Since
|
|
|
Mac OS ships with an outdated version of Bash (3.2), you can either use zsh or install a newer version of bash using
|
|
|
- `Homebrew <http://brew.sh/>`_ (``brew install bash`` - you will also need to add ``/usr/local/bin/bash`` to
|
|
|
+ `Homebrew <http://brew.sh/>`_ (``brew install bash`` - you will also need to add ``/opt/homebrew/bin/bash`` to
|
|
|
``/etc/shells``, and run ``chsh`` to change your shell). You can check the version of the running copy of bash with
|
|
|
``echo $BASH_VERSION``.
|
|
|
|