Skip to content

Commit 1aa6111

Browse files
committed
feat(python,pyvenv): 3.11 support
1 parent e45c45e commit 1aa6111

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

completions/.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,13 @@
176176
/python2.7
177177
/python3
178178
/python3.[3456789]
179-
/python3.10
179+
/python3.1[01]
180180
/pypy
181181
/pypy3
182182
/pyston
183183
/pyston3
184184
/pyvenv-3.[456789]
185-
/pyvenv-3.10
185+
/pyvenv-3.1[01]
186186
/qemu-kvm
187187
/qemu-system-i386
188188
/qemu-system-x86_64

completions/Makefile.am

+4-2
Original file line numberDiff line numberDiff line change
@@ -713,13 +713,15 @@ CLEANFILES = \
713713
python3.8 \
714714
python3.9 \
715715
python3.10 \
716+
python3.11 \
716717
pyvenv-3.4 \
717718
pyvenv-3.5 \
718719
pyvenv-3.6 \
719720
pyvenv-3.7 \
720721
pyvenv-3.8 \
721722
pyvenv-3.9 \
722723
pyvenv-3.10 \
724+
pyvenv-3.11 \
723725
qemu-kvm \
724726
qemu-system-i386 \
725727
qemu-system-x86_64 \
@@ -954,10 +956,10 @@ symlinks: $(DATA)
954956
$(ss) python \
955957
micropython pypy pypy3 pyston pyston3 python2 python2.7 \
956958
python3 python3.3 python3.4 python3.5 python3.6 python3.7 \
957-
python3.8 python3.9 python3.10
959+
python3.8 python3.9 python3.10 python3.11
958960
$(ss) pyvenv \
959961
pyvenv-3.4 pyvenv-3.5 pyvenv-3.6 pyvenv-3.7 pyvenv-3.8 \
960-
pyvenv-3.9 pyvenv-3.10
962+
pyvenv-3.9 pyvenv-3.10 pyvenv-3.11
961963
$(ss) qdbus \
962964
dcop
963965
$(ss) qemu \

completions/python

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ _python()
7070
COMPREPLY=($(compgen -W '$(_parse_help "$1" -h)' -- "$cur"))
7171
fi
7272
} &&
73-
complete -F _python python python2 python2.7 python3 python3.{3..10} \
73+
complete -F _python python python2 python2.7 python3 python3.{3..11} \
7474
pypy pypy3 pyston pyston3 micropython
7575

7676
# ex: filetype=sh

0 commit comments

Comments
 (0)