15
0

Accepting request 1096831 from devel:languages:python

- 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

OBS-URL: https://build.opensuse.org/request/show/1096831
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-argcomplete?expand=0&rev=26
This commit is contained in:
2023-07-05 13:30:46 +00:00
committed by Git OBS Bridge
5 changed files with 20 additions and 19 deletions

Binary file not shown.

3
argcomplete-3.1.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6c4c563f14f01440aaffa3eae13441c5db2357b5eec639abe7c0b15334627dff
size 79356

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Tue Jul 4 11:24:40 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- 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 <schwab@suse.de>

View File

@@ -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

View File

@@ -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(