Skip to content

Commit

Permalink
GitHub Actions: Install importlib_metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Jul 29, 2024
1 parent 5f77ab8 commit 4aeb530
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
sudo apt-get install python3 python3-setuptools python3-pip
# Requires setuptools >= 62.1 for `python setup.py test`, as earlier versions
# used a different build path to the .so file as located in tests/__init__.py
sudo pip3 install -U pytest numpy scipy setuptools>=62.1.0
# 2024-07-29: Require importlib_metadata for now due to this:
# https://github.com/pypa/setuptools/issues/4478
sudo pip3 install -U pytest numpy scipy setuptools>=62.1.0 importlib_metadata
- name: Configure
run: mkdir build && cd build && cmake ..
- name: Make
Expand Down

0 comments on commit 4aeb530

Please sign in to comment.