From aac177141fca927373a9bd2dc19f92e60793dcf7 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 4 Jun 2024 08:55:37 -0400 Subject: [PATCH 1/2] docs(coding): update supported versions --- docs/contributing/coding-guidelines.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/contributing/coding-guidelines.md b/docs/contributing/coding-guidelines.md index 0e124b5..41fc217 100644 --- a/docs/contributing/coding-guidelines.md +++ b/docs/contributing/coding-guidelines.md @@ -24,7 +24,7 @@ - Test your code before committing -- +- ## Coding @@ -47,14 +47,14 @@ - most development should be the result of an issue -- Don't catch exceptions unless you expect to respond meaningfully. +- Don't catch exceptions unless you expect to respond meaningfully. - Configuration: config env vars should be high in the stack, adjacent to other configuration, and passed down. Env vars should typically not change behavior deep in a call stack. In no circumstance should an env var override an explicit setting higher in the stack. Debugging, logging, and other observability tooling are exceptions to this rule. -- +- ## Issues @@ -83,7 +83,7 @@ git tags in order to ensure that released software always corresponds to a git t - main is the release branch. - release-specific branches, branched off of main and named as x.y, support concurrent - patch release off the x.y + patch release off the x.y - dev is the development branch for integration testing. - feature development occurs in feature branches, branched off of dev and named for the corresponding issue (e.g., 42-bang-the-rocks-together). @@ -134,6 +134,4 @@ Tagging, releasing, changelogs ## Other -- We support most recent 3 Python releases; https://devguide.python.org/versions/ - - 3.9, 3.10, 3.11 now - - drop 3.9 and add 3.12 when 3.12 is available +- We support the most recent 3 Python releases per the official [Python developer's guide](https://devguide.python.org/versions/): 3.10, 3.11, and 3.12 From 38b4752b7847f6880998245cced5aab1fed42f90 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Tue, 4 Jun 2024 09:01:29 -0400 Subject: [PATCH 2/2] reword --- docs/contributing/coding-guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/coding-guidelines.md b/docs/contributing/coding-guidelines.md index 41fc217..9a45928 100644 --- a/docs/contributing/coding-guidelines.md +++ b/docs/contributing/coding-guidelines.md @@ -134,4 +134,4 @@ Tagging, releasing, changelogs ## Other -- We support the most recent 3 Python releases per the official [Python developer's guide](https://devguide.python.org/versions/): 3.10, 3.11, and 3.12 +- We support the three most recent [full Python releases](https://devguide.python.org/versions/): 3.10, 3.11, and 3.12