diff options
| author | dundargoc <gocdundar@gmail.com> | 2024-03-29 13:20:43 +0100 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-03-29 17:11:29 +0100 |
| commit | 36acb2a8ec905069e382bb3b6db6b6ac677bce39 (patch) | |
| tree | 9274348ee4e05f59bf6db2cc2a5636bf3bc79693 /.github/workflows | |
| parent | 8424c64498460c55adb05d50524c42b06dff8103 (diff) | |
| download | rneovim-36acb2a8ec905069e382bb3b6db6b6ac677bce39.tar.gz rneovim-36acb2a8ec905069e382bb3b6db6b6ac677bce39.tar.bz2 rneovim-36acb2a8ec905069e382bb3b6db6b6ac677bce39.zip | |
ci: use `--break-system-packages` on mac when installing pynvim
Python 3.12+ throws an error if you try to install a package in an
externally managed environment. Using `--break-system-packages` is not
recommended for personal use, but for CI it should be fine and is
probably the most straightforward solution.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 622304512e..d7af975748 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -134,10 +134,6 @@ jobs: - if: ${{ matrix.test != 'unittest' }} name: Set up interpreter packages run: | - # Use default CC to avoid compilation problems when installing Python modules. - echo "Install neovim module for Python." - CC=cc python3 -m pip -q install --user --upgrade pynvim - echo "Install neovim RubyGem." gem install --no-document --bindir "$BIN_DIR" --user-install --pre neovim |