Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
robert3005 committed Mar 6, 2024
1 parent 17d2078 commit 5b5e121
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ runs:
path: .venv
key: "venv-${{ runner.os }}-${{ hashFiles('requirements**.lock') }}"

- name: Export PYO3 Path
shell: bash
# Figure out a way to dynamically get python version
run: |
echo "PYO3_PYTHON=/home/runner/work/vortex/vortex/.venv/bin/python" >> $GITHUB_ENV
echo "PYO3_ENVIRONMENT_SIGNATURE=cpython-3.11-64bit" >> $GITHUB_ENV
- name: Rye Sync
shell: bash
# --no-lock prevents resolution of the lock file. The locks are still respected.
Expand All @@ -46,9 +53,3 @@ runs:
shell: bash
run: echo "PATH=$PATH" >> $GITHUB_ENV

- name: Export PYO3 Path
shell: bash
# Figure out a way to dynamically get python version
run: |
echo "PYO3_PYTHON=./.venv/bin/python" >> $GITHUB_ENV
echo "PYO3_ENVIRONMENT_SIGNATURE=cpython-3.11-64bit" >> $GITHUB_ENV

0 comments on commit 5b5e121

Please sign in to comment.