isort / isort-action

Github Action to run isort
MIT License
22 stars 14 forks source link

isort-action doesn't install on ubuntu-latest GitHub worker #94

Closed wyfo closed 2 weeks ago

wyfo commented 3 weeks ago

Github recently updated its ubuntu-latest worker to 24.04, which uses Python 3.12, while 22.04 was using 3.10. On this new ubuntu-latest worker, isort-action fails with the following error:

Install isort
  Installing latest version of isort
  error: externally-managed-environment

  × This environment is externally managed
  ╰─> To install Python packages system-wide, try apt install
      python3-xyz, where xyz is the package you are trying to
      install.

      If you wish to install a non-Debian-packaged Python package,
      create a virtual environment using python3 -m venv path/to/venv.
      Then use path/to/venv/bin/python and path/to/venv/bin/pip. Make
      sure you have python3-full installed.

      If you wish to install a non-Debian packaged Python application,
      it may be easiest to use pipx install xyz, which will manage a
      virtual environment for you. Make sure you have pipx installed.

      See /usr/share/doc/python3.12/README.venv for more information.

  note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
  hint: See PEP 668 for the detailed specification.

Many resources on the internet mention this error as being a consequence of upgrade to Python 3.12

JoseMLopezSanz commented 2 weeks ago

For anyone else landing here, while this gets fixed, you can pin the version of the runner image on your action to 22.04.

jobs:
  black:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v4
      - uses: isort/isort-action@v1