Merge "Fix u-c filter regex"

This commit is contained in:
Zuul 2021-04-21 17:50:54 +00:00 committed by Gerrit Code Review
commit 77b0d49ba1
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@
name: "python_venv_build"
vars:
venv_python_executable: "{{ zun_venv_python_executable }}"
venv_build_constraints: "{{ _u_c_contents.content.split('\n') | reject('match', '[kuryr\\-lib=*]') | list }}"
venv_build_constraints: "{{ _u_c_contents.content.split('\n') | reject('match', '^kuryr-lib=') | list }}"
venv_install_destination_path: "{{ zun_bin | dirname }}"
venv_install_distro_package_list: "{{ zun_distro_packages }}"
venv_pip_install_args: "{{ zun_pip_install_args }}"