Skip to content

Commit

Permalink
Merge pull request openstack-charmers#292 from openstack-charmers/202…
Browse files Browse the repository at this point in the history
…3.2-updates

Remove py311 target (for 2023.2) updates.
  • Loading branch information
freyes authored Nov 7, 2023
2 parents d129e30 + 0da772f commit 80e4e13
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion global/classic-zaza/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ deps = -r{toxinidir}/merged-requirements-py310.txt

[testenv:py3]
basepython = python3
deps = -r{toxinidir}/merged-requirements-py38.txt
deps = -r{toxinidir}/merged-requirements-py310.txt

[testenv:pep8]
basepython = python3
Expand Down
2 changes: 1 addition & 1 deletion global/ops-zaza/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ deps = -r{toxinidir}/merged-requirements-py310.txt

[testenv:py3]
basepython = python3
deps = -r{toxinidir}/merged-requirements-py38.txt
deps = -r{toxinidir}/merged-requirements-py310.txt

[testenv:pep8]
basepython = python3
Expand Down
6 changes: 3 additions & 3 deletions global/source-zaza/tox-binary-wheels.ini
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ commands =

[testenv:py3]
basepython = python3
deps = -r{toxinidir}/merged-requirements-py38.txt
deps = -r{toxinidir}/test-requirements-py310.txt
commands = stestr run --slowest {posargs}

[testenv:py38]
basepython = python3.8
deps = -r{toxinidir}/merged-requirements-py38.txt
deps = -r{toxinidir}/test-requirements-py38.txt
commands = stestr run --slowest {posargs}

[testenv:py310]
basepython = python3.10
deps = -r{toxinidir}/merged-requirements-py310.txt
deps = -r{toxinidir}/test-requirements-py310.txt
commands = stestr run --slowest {posargs}

[testenv:pep8]
Expand Down
6 changes: 3 additions & 3 deletions global/source-zaza/tox-source-wheels.ini
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@ commands =

[testenv:py3]
basepython = python3
deps = -r{toxinidir}/merged-requirements-py38.txt
deps = -r{toxinidir}/test-requirements-py310.txt
commands = stestr run --slowest {posargs}

[testenv:py38]
basepython = python3.8
deps = -r{toxinidir}/merged-requirements-py38.txt
deps = -r{toxinidir}/test-requirements-py38.txt
commands = stestr run --slowest {posargs}

[testenv:py310]
basepython = python3.10
deps = -r{toxinidir}/merged-requirements-py310.txt
deps = -r{toxinidir}/test-requirements-py310.txt
commands = stestr run --slowest {posargs}

[testenv:pep8]
Expand Down
3 changes: 3 additions & 0 deletions lock-with-pip-compile
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@ function lock_with_pip_compile_reactive {
do_merged_pip_compile python3.8 py38 requirements.in test-requirements.in
do_merged_pip_compile python3.10 py310 requirements.in test-requirements.in
do_pip_compile python3.8 src/test-requirements.in src/test-requirements-py38.txt
do_pip_compile python3.8 test-requirements.in test-requirements-py38.txt
do_pip_compile python3.10 test-requirements.in test-requirements-py310.txt
}


Expand All @@ -192,6 +194,7 @@ function lock_with_pip_compile_ops_machine {
# install venvs for python3.8 and python3.10 for the pip-compile
install_venv python3.8
install_venv python3.10
install_venv python3.11


case $charm_type in
Expand Down

0 comments on commit 80e4e13

Please sign in to comment.