Skip to content

Commit

Permalink
Installs setuptools for OS X.
Browse files Browse the repository at this point in the history
ModuleNotFoundError: No module named 'pkg_resources'

Probably due to upgrading from OS X 11 to 12/latest.
  • Loading branch information
tommie committed Dec 23, 2023
1 parent 5824aa4 commit 0b43849
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/v8build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Install g++-aarch64-linux-gnu
if: matrix.os == 'linux' && matrix.arch == 'arm64'
run: sudo apt update && sudo apt install g++-aarch64-linux-gnu -y
- name: Install setuptools
if: matrix.platform == 'macos-latest'
run: python3 -m ensurepip --default-pip && python3 -m pip install --upgrade setuptools
- name: Build V8 (${{ matrix.os }})
if: matrix.os == 'linux'
run: cd deps && ./build.py --no-clang --arch ${{ matrix.arch }} --os ${{ matrix.os }}
Expand Down

0 comments on commit 0b43849

Please sign in to comment.