Skip to content

Commit 9d03bed

Browse files
author
Shubham Chaturvedi
committed
fix: pin tox version < 4.0
1 parent 83253ea commit 9d03bed

18 files changed

+19
-19
lines changed

codebuild/coverage/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ phases:
1010
python: latest
1111
build:
1212
commands:
13-
- pip install tox
13+
- pip install "tox < 4.0"
1414
- tox

codebuild/py310/awses_local.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ phases:
2222
commands:
2323
- pyenv install 3.10.0
2424
- pyenv local 3.10.0
25-
- pip install tox tox-pyenv
25+
- pip install "tox < 4.0"
2626
- cd test_vector_handlers
2727
- tox

codebuild/py310/examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ phases:
2020
commands:
2121
- pyenv install 3.10.0
2222
- pyenv local 3.10.0
23-
- pip install tox tox-pyenv
23+
- pip install "tox < 4.0"
2424
- tox

codebuild/py310/integ.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ phases:
2020
commands:
2121
- pyenv install 3.10.0
2222
- pyenv local 3.10.0
23-
- pip install tox tox-pyenv
23+
- pip install "tox < 4.0"
2424
- tox

codebuild/py37/awses_local.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ phases:
2222
commands:
2323
- pyenv install 3.7.12
2424
- pyenv local 3.7.12
25-
- pip install tox tox-pyenv
25+
- pip install "tox < 4.0"
2626
- cd test_vector_handlers
2727
- tox

codebuild/py37/examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ phases:
2020
commands:
2121
- pyenv install 3.7.12
2222
- pyenv local 3.7.12
23-
- pip install tox tox-pyenv
23+
- pip install "tox < 4.0"
2424
- tox

codebuild/py37/integ.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ phases:
2020
commands:
2121
- pyenv install 3.7.12
2222
- pyenv local 3.7.12
23-
- pip install tox tox-pyenv
23+
- pip install "tox < 4.0"
2424
- tox

codebuild/py38/awses_local.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ phases:
2222
commands:
2323
- pyenv install 3.8.12
2424
- pyenv local 3.8.12
25-
- pip install tox tox-pyenv
25+
- pip install "tox < 4.0"
2626
- cd test_vector_handlers
2727
- tox

codebuild/py38/examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ phases:
2020
commands:
2121
- pyenv install 3.8.12
2222
- pyenv local 3.8.12
23-
- pip install tox tox-pyenv
23+
- pip install "tox < 4.0"
2424
- tox

codebuild/py38/integ.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ phases:
2020
commands:
2121
- pyenv install 3.8.12
2222
- pyenv local 3.8.12
23-
- pip install tox tox-pyenv
23+
- pip install "tox < 4.0"
2424
- tox

codebuild/py39/awses_1.7.1.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ phases:
2222
commands:
2323
- pyenv install 3.9.7
2424
- pyenv local 3.9.7
25-
- pip install tox tox-pyenv
25+
- pip install "tox < 4.0"
2626
- cd test_vector_handlers
2727
- tox

codebuild/py39/awses_2.0.0.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ phases:
2222
commands:
2323
- pyenv install 3.9.7
2424
- pyenv local 3.9.7
25-
- pip install tox tox-pyenv
25+
- pip install "tox < 4.0"
2626
- cd test_vector_handlers
2727
- tox

codebuild/py39/awses_latest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ phases:
2222
commands:
2323
- pyenv install 3.9.7
2424
- pyenv local 3.9.7
25-
- pip install tox tox-pyenv
25+
- pip install "tox < 4.0"
2626
- cd test_vector_handlers
2727
- tox

codebuild/py39/examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ phases:
2020
commands:
2121
- pyenv install 3.9.7
2222
- pyenv local 3.9.7
23-
- pip install tox tox-pyenv
23+
- pip install "tox < 4.0"
2424
- tox

codebuild/py39/integ.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ phases:
2020
commands:
2121
- pyenv install 3.9.7
2222
- pyenv local 3.9.7
23-
- pip install tox tox-pyenv
23+
- pip install "tox < 4.0"
2424
- tox

codebuild/release/prod-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
phases:
1111
install:
1212
commands:
13-
- pip install tox
13+
- pip install "tox < 4.0"
1414
- pip install --upgrade pip
1515
runtime-versions:
1616
python: latest

codebuild/release/test-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
phases:
1111
install:
1212
commands:
13-
- pip install tox
13+
- pip install "tox < 4.0"
1414
- pip install --upgrade pip
1515
runtime-versions:
1616
python: latest

codebuild/release/validate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 0.2
33
phases:
44
install:
55
commands:
6-
- pip install tox
6+
- pip install "tox < 4.0"
77
runtime-versions:
88
python: latest
99
pre_build:
@@ -13,7 +13,7 @@ phases:
1313
- sed -i "s/aws_encryption_sdk/aws_encryption_sdk==$VERSION/" requirements-dev.txt
1414
- pyenv install 3.8.12
1515
- pyenv local 3.8.12
16-
- pip install tox tox-pyenv
16+
- pip install "tox < 4.0"
1717
build:
1818
commands:
1919
- NUM_RETRIES=3

0 commit comments

Comments
 (0)