Skip to content

Commit c6ef1a2

Browse files
committed
add python 3.13 to tox
1 parent 23bf87e commit c6ef1a2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[tox]
2-
envlist = py38,py39,py310,py311,py312,lint
2+
envlist = py38,py39,py310,py311,py312,py313,lint
33

44
[gh]
55
python =
6+
3.13 = py313
67
3.12 = py312
78
3.11 = py311
89
3.10 = py310

vagrant-provision.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exec $SHELL
2626
# 'exec $SHELL' doesn't work well in a provision file. Likely you need to
2727
# run the following commands manually after 'vagrant up'
2828

29-
for VERSION in 3.8 3.9 3.10 3.11; do
29+
for VERSION in 3.8 3.9 3.10 3.11 3.12 3.13; do
3030
VERSION=$(pyenv latest --known $VERSION)
3131
echo "Installing $VERSION ..."
3232
pyenv install --skip-existing $VERSION

0 commit comments

Comments
 (0)