From b3ea677930f8ac2ff376ab50fde4255a46b9f75b Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Fri, 25 Oct 2024 18:44:14 +0300 Subject: [PATCH] .bash_completion.d: Python 3.13 --- .bash_completion.d/python-pip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bash_completion.d/python-pip b/.bash_completion.d/python-pip index 3f5482f..67f3c69 100644 --- a/.bash_completion.d/python-pip +++ b/.bash_completion.d/python-pip @@ -1,5 +1,5 @@ PY_VERSIONS=",2,2.7,3," -PY_VERSIONS+="$(eval echo 3.{`seq -s, 4 12`} | sed 's/ /,/g')" +PY_VERSIONS+="$(eval echo 3.{`seq -s, 4 13`} | sed 's/ /,/g')" eval delegate_completion python{$PY_VERSIONS} -- 2.39.5