Skip to content

Commit ad6777d

Browse files
authored
Merge pull request #394 from stackhpc/rm-py36
Remove Python 3.6 support
2 parents b0ab677 + 4cf09e9 commit ad6777d

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

docs/usage/source-code-ci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The table below contains the different workflows with a description of each and
2727

2828
OpenStack use [Tox](https://wiki.openstack.org/wiki/Testing) to manage the unit tests and style checks for the various projects they maintain.
2929
Therefore, when a `pull request` is opened the tox workflow will automatically perform a series of unit tests and linting in order ensure correctness and style guidelines are being met.
30-
The python environment will depend on the branch pre-Zed, python 3.6 and python 3.8 will be tested. From Zed onward, python 3.8 and python 3.10 will be tested, though only python 3.10 will be required for Caracal.
30+
The python environment will depend on the branch. Python 3.8, 3.10, and 3.12 are tested for various releases.
3131
This can be controlled within the strategy matrix of the workflow.
3232
The Python versions should correspond to those used in the supported OS distributions for a particular release.
3333
The source for the workflow can be found [here](https://github.com/stackhpc/.github/blob/main/.github/workflows/tox.yml).

terraform/github/branches.tf

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ resource "github_branch_protection" "kayobe_branch_protection_py_3-6" {
8888
contexts = lookup(lookup(var.required_status_checks, each.key, {}), "stackhpc/[vwxy]*", lookup(var.required_status_checks, each.key, {
8989
"default" : [
9090
"tox / Tox pep8 with Python 3.8",
91-
"tox / Tox py3 with Python 3.8",
92-
"tox / Tox py3 with Python 3.6"
91+
"tox / Tox py3 with Python 3.8"
9392
]
9493
}).default)
9594
strict = false
@@ -302,8 +301,7 @@ resource "github_branch_protection" "openstack_branch_protection_py_3-6" {
302301
contexts = lookup(lookup(var.required_status_checks, each.key, {}), "stackhpc/[vwxy]*", lookup(var.required_status_checks, each.key, {
303302
"default" : [
304303
"tox / Tox pep8 with Python 3.8",
305-
"tox / Tox py3 with Python 3.8",
306-
"tox / Tox py3 with Python 3.6"
304+
"tox / Tox py3 with Python 3.8"
307305
]
308306
}).default)
309307
strict = false

0 commit comments

Comments
 (0)