Skip to content

Commit

Permalink
Cirrus CI: Fix pip install issue on Ubuntu rolling (#4401)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke authored May 13, 2023
1 parent 63eb824 commit d2b1497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
common_steps_template: &COMMON_STEPS_TEMPLATE
install_lit_script: |
# Install lit
rm -f /usr/lib/python3.11/EXTERNALLY-MANAGED # required for Ubuntu 23.04
python3 -m pip install --user setuptools wheel
# lit v0.11.1 is the latest version to work with Python v3.5 (from Ubuntu 16.04)
python3 -m pip install --user lit==0.11.1
python3 -m pip install --user lit
python3 -c "import lit.main; lit.main.main();" --version . | head -n 1
clone_submodules_script: |
cd $CIRRUS_WORKING_DIR
Expand Down

0 comments on commit d2b1497

Please sign in to comment.