Update git submodules

* Update horizon from branch 'master'
  to 6a58ef5a19e79d22613e21e92ea1d5f7d9e21472
  - Merge "Fix Python3.11 unit test failures"
  - Fix Python3.11 unit test failures
    
    In Python 3.11, regex have undergone changes in
    how they handle Unicode characters. In Python3.11,
    global flags must be placed right at the start of a
    regular expression. The following regex:
    
            validators.RegexValidator(r'^(?u)[^/]+$')
    must become:
            validators.RegexValidator(r'(?u)^[^/]+$')
    
    Closes-Bug: #2036378
    Change-Id: I3884ae5b3a32e33077cf3efeac649ac0c615fdda
This commit is contained in:
Zuul 2023-09-28 15:04:28 +00:00 committed by Gerrit Code Review
parent 6b452ef642
commit 3af44277a4
1 changed files with 1 additions and 1 deletions

@ -1 +1 @@
Subproject commit 84ca5327928c3f3fdf323f7259780889b511d2de
Subproject commit 6a58ef5a19e79d22613e21e92ea1d5f7d9e21472