15
0

- update to 3.1.6:

*  Respect user choice in activate-global-python-argcomplete
  *  Escape colon in zsh completions. Fixes #456
  *  Call \_default as a fallback in zsh global completion

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-argcomplete?expand=0&rev=63
This commit is contained in:
2023-11-27 15:35:23 +00:00
committed by Git OBS Bridge
parent 23d91170c8
commit 96349c4d5b
5 changed files with 18 additions and 12 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:72558ba729e4c468572609817226fb0a6e7e9a0a7d477b882be168c0b4a62b94
size 79529

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

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

View File

@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Mon Nov 27 15:26:30 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.1.6:
* Respect user choice in activate-global-python-argcomplete
* Escape colon in zsh completions. Fixes #456
* Call \_default as a fallback in zsh global completion
-------------------------------------------------------------------
Fri Nov 10 12:26:40 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@@ -19,7 +19,7 @@
%{?sle15_python_module_pythons}
Name: python-argcomplete
Version: 3.1.4
Version: 3.1.6
Release: 0
Summary: Bash tab completion for argparse
License: Apache-2.0

View File

@@ -1,13 +1,14 @@
Index: argcomplete-3.0.8/test/test.py
Index: argcomplete-3.1.6/test/test.py
===================================================================
--- argcomplete-3.0.8.orig/test/test.py
+++ argcomplete-3.0.8/test/test.py
@@ -1299,22 +1299,6 @@ class TestBash(TestBashZshBase, unittest
--- argcomplete-3.1.6.orig/test/test.py
+++ argcomplete-3.1.6/test/test.py
@@ -1299,20 +1299,6 @@ class TestBash(TestBashZshBase, unittest
self.test_simple_completion()
-class TestZsh(TestBashZshBase, unittest.TestCase):
- expected_failures = [
- skipped = [
- "test_parse_special_characters",
- "test_parse_special_characters_dollar",
- "test_comp_point", # FIXME
- "test_completion_environment", # FIXME
@@ -15,9 +16,6 @@ Index: argcomplete-3.0.8/test/test.py
- "test_wordbreak_chars", # FIXME
- ]
-
- def test_parse_special_characters(self):
- pass # FIXME: test crashes in teardown
-
- def repl_provider(self):
- return zsh_repl()
-