diff options
author | Eric Eastwood <erice@element.io> | 2023-07-11 17:15:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 17:15:06 -0500 |
commit | 3bdb9b07fd19a57f563b84fb02bfcbaa2ef3083b (patch) | |
tree | fd4964c30e573e4b100965ca93b84f850f532cc9 /changelog.d | |
parent | Better clarify how to run a worker instance (pass both configs) (#15921) (diff) | |
download | synapse-3bdb9b07fd19a57f563b84fb02bfcbaa2ef3083b.tar.xz |
Make it more obvious which Python version runs on a given Linux distribution (#15909)
Make it more obvious which Python version runs on a given Linux distribution so when we end up dropping support for a given Python version, we can more easily find the reference to the Python version and remove any references for the distribution. We don't want to be running tests or building packages on a distribution that no longer has a supported Python version. This way, we can avoid another situation like when we dropped support for Python 3.7 but forgot to drop the Debian Buster references everywhere (https://github.com/matrix-org/synapse/pull/15893)
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/15909.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/15909.misc b/changelog.d/15909.misc new file mode 100644 index 0000000000..ba36a97442 --- /dev/null +++ b/changelog.d/15909.misc @@ -0,0 +1 @@ +Document which Python version runs on a given Linux distribution so we can more easily clean up later. |