diff --git a/argcomplete-3.0.8.tar.gz b/argcomplete-3.0.8.tar.gz deleted file mode 100644 index 1918894..0000000 --- a/argcomplete-3.0.8.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b9ca96448e14fa459d7450a4ab5a22bbf9cee4ba7adddf03e65c398b5daeea28 -size 56035 diff --git a/argcomplete-3.1.1.tar.gz b/argcomplete-3.1.1.tar.gz new file mode 100644 index 0000000..d577499 --- /dev/null +++ b/argcomplete-3.1.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c4c563f14f01440aaffa3eae13441c5db2357b5eec639abe7c0b15334627dff +size 79356 diff --git a/python-argcomplete.changes b/python-argcomplete.changes index f9b8478..b527e06 100644 --- a/python-argcomplete.changes +++ b/python-argcomplete.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Tue Jul 4 11:24:40 UTC 2023 - John Paul Adrian Glaubitz + +- Update to version 3.1.1 + * Search through asdf shims + * Use \` as escape character in PowerShell (#434) +- from version 3.1.0 + * setup.py -> pyproject.toml migration start (#427) + * Improve user install logic in activate-global-python-argcomplete (#437) + * Ensure Python 3.7 compatibility in check_console_script (#436) + * ZSH implementation fixes (#431, #433) + * Documentation improvements +- Drop obsolete patch + * trim-test-deps.patch + ------------------------------------------------------------------- Tue May 30 16:02:49 UTC 2023 - Andreas Schwab diff --git a/python-argcomplete.spec b/python-argcomplete.spec index 9575a3d..3a1ed78 100644 --- a/python-argcomplete.spec +++ b/python-argcomplete.spec @@ -20,14 +20,13 @@ %global skip_python2 1 %{?sle15_python_module_pythons} Name: python-argcomplete -Version: 3.0.8 +Version: 3.1.1 Release: 0 Summary: Bash tab completion for argparse License: Apache-2.0 Group: Development/Languages/Python URL: https://github.com/kislyuk/argcomplete Source: https://files.pythonhosted.org/packages/source/a/argcomplete/argcomplete-%{version}.tar.gz -Patch1: trim-test-deps.patch # Don't fail the test suite when zsh is not available Patch2: without_zsh.patch # Use correct place for auxiliary bashrc.sh file from pexpect @@ -95,7 +94,7 @@ export LANG=en_US.UTF-8 %files %{python_files} %doc README.rst %license LICENSE.rst -%{python_sitelib}/argcomplete-%{version}*-info +%{python_sitelib}/argcomplete-*-info %{python_sitelib}/argcomplete %python_alternative %{_bindir}/python-argcomplete-check-easy-install-script %python_alternative %{_bindir}/register-python-argcomplete diff --git a/trim-test-deps.patch b/trim-test-deps.patch deleted file mode 100644 index ff01026..0000000 --- a/trim-test-deps.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: argcomplete-3.0.8/setup.py -=================================================================== ---- argcomplete-3.0.8.orig/setup.py -+++ argcomplete-3.0.8/setup.py -@@ -5,7 +5,7 @@ import glob - from setuptools import find_packages, setup - - install_requires = [] --tests_require = ["coverage", "pexpect", "wheel", "ruff", "mypy"] -+tests_require = ["pexpect"] - importlib_backport_requires = ["importlib-metadata >= 0.23, < 7"] - - setup(