Skip to content

Commit 3039122

Browse files
committed
feat(python,pyvenv): versioned 3.13 executable support
While at it, make gitignore entries for these globs for a little less future maintenance chores.
1 parent 1cb3eae commit 3039122

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

completions/.gitignore

+3-5
Original file line numberDiff line numberDiff line change
@@ -253,16 +253,14 @@
253253
/pylint-[23]
254254
/pytest-[23]
255255
/python2
256-
/python2.7
256+
/python2.*
257257
/python3
258-
/python3.[3456789]
259-
/python3.1[012]
258+
/python3.*
260259
/pypy
261260
/pypy3
262261
/pyston
263262
/pyston3
264-
/pyvenv-3.[456789]
265-
/pyvenv-3.1[012]
263+
/pyvenv-3.*
266264
/qemu-kvm
267265
/qemu-system-i386
268266
/qemu-system-x86_64

completions/Makefile.am

+4-2
Original file line numberDiff line numberDiff line change
@@ -819,6 +819,7 @@ CLEANFILES = \
819819
python3.10 \
820820
python3.11 \
821821
python3.12 \
822+
python3.13 \
822823
pyvenv-3.4 \
823824
pyvenv-3.5 \
824825
pyvenv-3.6 \
@@ -828,6 +829,7 @@ CLEANFILES = \
828829
pyvenv-3.10 \
829830
pyvenv-3.11 \
830831
pyvenv-3.12 \
832+
pyvenv-3.13 \
831833
qemu-kvm \
832834
qemu-system-i386 \
833835
qemu-system-x86_64 \
@@ -1177,10 +1179,10 @@ symlinks: $(DATA)
11771179
$(ss) python \
11781180
micropython pypy pypy3 pyston pyston3 python2 python2.7 \
11791181
python3 python3.3 python3.4 python3.5 python3.6 python3.7 \
1180-
python3.8 python3.9 python3.10 python3.11 python3.12
1182+
python3.8 python3.9 python3.10 python3.11 python3.12 python3.13
11811183
$(ss) pyvenv \
11821184
pyvenv-3.4 pyvenv-3.5 pyvenv-3.6 pyvenv-3.7 pyvenv-3.8 \
1183-
pyvenv-3.9 pyvenv-3.10 pyvenv-3.11 pyvenv-3.12
1185+
pyvenv-3.9 pyvenv-3.10 pyvenv-3.11 pyvenv-3.12 pyvenv-3.13
11841186
$(ss) qdbus \
11851187
dcop
11861188
$(ss) qemu \

completions/python

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ _comp_cmd_python()
119119
fi
120120
} &&
121121
complete -F _comp_cmd_python \
122-
python python2 python2.7 python3 python3.{3..12} \
122+
python python2 python2.7 python3 python3.{3..13} \
123123
pypy pypy3 pyston pyston3 micropython
124124

125125
# ex: filetype=sh

completions/pyvenv

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ _comp_cmd_pyvenv()
2020

2121
_comp_compgen_filedir -d
2222
} &&
23-
complete -F _comp_cmd_pyvenv pyvenv pyvenv-3.{4..12}
23+
complete -F _comp_cmd_pyvenv pyvenv pyvenv-3.{4..13}
2424

2525
# ex: filetype=sh

0 commit comments

Comments
 (0)