Skip to content

Commit

Permalink
Create virtual environment for Python packages in CI (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanoKobalamyne committed Jun 18, 2024
1 parent 4f862f4 commit 835b6a9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
brew install \
gmp
- name: Python Environment Setup
run: |
python3 -m venv ./.venv
echo "$PWD/.venv/bin" >> $GITHUB_PATH
# install previous version of setuptools as temporary fix
# see also recommendations here: https://github.com/pypa/setuptools/issues/3227
- name: Python Dependencies (macOS)
Expand Down

0 comments on commit 835b6a9

Please sign in to comment.