Skip to content

Commit

Permalink
chore: venv
Browse files Browse the repository at this point in the history
  • Loading branch information
nohehf committed May 13, 2024
1 parent b848e3f commit f61449d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
with:
python-version: '3.11' # Adjust as necessary for your project

- name: Activate venv
run: python -m venv .venv && source .venv/bin/activate

# - name: Install Python dependencies
# run: |
# python -m pip install --upgrade pip
Expand Down
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
.PHONY: setup
setup:
pyenv virtualenvs | grep stack-graphs-python-bindings || pyenv virtualenv 3.11.0 stack-graphs-python-bindings
pyenv activate stack-graphs-python-bindings
python -m pip install --upgrade pip
pip install maturin


.PHONY: develop
develop:
maturin develop
Expand Down

0 comments on commit f61449d

Please sign in to comment.