Skip to content

Commit

Permalink
add python 3.13 to tox
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmail committed Nov 9, 2024
1 parent 23bf87e commit c6ef1a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[tox]
envlist = py38,py39,py310,py311,py312,lint
envlist = py38,py39,py310,py311,py312,py313,lint

[gh]
python =
3.13 = py313
3.12 = py312
3.11 = py311
3.10 = py310
Expand Down
2 changes: 1 addition & 1 deletion vagrant-provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ exec $SHELL
# 'exec $SHELL' doesn't work well in a provision file. Likely you need to
# run the following commands manually after 'vagrant up'

for VERSION in 3.8 3.9 3.10 3.11; do
for VERSION in 3.8 3.9 3.10 3.11 3.12 3.13; do
VERSION=$(pyenv latest --known $VERSION)
echo "Installing $VERSION ..."
pyenv install --skip-existing $VERSION
Expand Down

0 comments on commit c6ef1a2

Please sign in to comment.