]> git.kaiwu.me - haproxy.git/commit
CI: Fix regular expression escaping in matrix.py
authorTim Duesterhus <tim@bastelstu.be>
Sun, 12 Apr 2026 19:27:05 +0000 (21:27 +0200)
committerWilliam Lallemand <wlallemand@haproxy.com>
Mon, 13 Apr 2026 07:34:07 +0000 (09:34 +0200)
commitabcf2d757d53f5f44b18e2c945029f1e603ef001
treeb393d13d346b4872a2ba05f1ec84ceb2adc1d907
parent5d6a09580a35edc893ffb5875aa844e2c7686afe
CI: Fix regular expression escaping in matrix.py

This fixes:

    .github/matrix.py:72: SyntaxWarning: "\." is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\."? A raw string is also an option.
      return re.match('^v[0-9]+(\.[0-9]+)*$', version_string)
    .github/matrix.py:89: SyntaxWarning: "\." is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\."? A raw string is also an option.
      return re.match('^AWS-LC-FIPS-[0-9]+(\.[0-9]+)*$', version_string)
    .github/matrix.py:106: SyntaxWarning: "\." is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\."? A raw string is also an option.
      return re.match('^v[0-9]+(\.[0-9]+)*-stable$', version_string)
.github/matrix.py