Skip to content

Commit 2d98a20

Browse files
use any py3 for example validation, not just py38
1 parent 5a10c24 commit 2d98a20

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

codebuild/release/validate.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ env:
1515
phases:
1616
install:
1717
commands:
18-
- pyenv install 3.8.12
19-
- pyenv local 3.8.12
20-
- pip install tox tox-pyenv
18+
- pip install tox
2119
runtime-versions:
2220
python: latest
2321
pre_build:
@@ -30,7 +28,7 @@ phases:
3028
- |
3129
while [ $NUM_RETRIES -gt 0 ]
3230
do
33-
tox -re py38-examples
31+
tox -re py3-examples
3432
if [ $? -eq 0 ]; then
3533
break
3634
fi

examples/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[tox]
44
envlist =
5-
py{36,37,38,39}-examples
5+
py{3,36,37,38,39}-examples
66

77
[testenv:base-command]
88
commands = python -m pytest --basetemp={envtmpdir} -l {posargs}

0 commit comments

Comments
 (0)