diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f9c5c48629..c6f5fa01d4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -109,10 +109,9 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Install dependencies + - name: Install poetry run: | pip install poetry - # poetry install - name: Fable Library - Python (linux) if: matrix.platform == 'ubuntu-latest' diff --git a/src/Fable.Build/FableLibrary/Python.fs b/src/Fable.Build/FableLibrary/Python.fs index 9ae0e0f834..cc50a5754b 100644 --- a/src/Fable.Build/FableLibrary/Python.fs +++ b/src/Fable.Build/FableLibrary/Python.fs @@ -43,7 +43,7 @@ type BuildFableLibraryPython() = "poetry", $"run ruff --select I --fix {this.BuildDir}" ) - // Run Ruff formatter using poetry on all generated files + // Run Ruff formatter on all generated files Command.Run( "poetry", $"run ruff format {this.BuildDir}"