Skip to content

Commit

Permalink
move
Browse files Browse the repository at this point in the history
  • Loading branch information
laves committed Sep 19, 2024
1 parent 447a176 commit 2592920
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ jobs:
steps:
- uses: actions/checkout@v3

# ************REMOVE AFTER RELEASE ***************
- name: build local binding
run: python3 -m pip install setuptools && python3 -m pip install wheel && python3 -m setup sdist bdist_wheel
working-directory: binding/python
# ************REMOVE AFTER RELEASE ***************

- name: Setup Python virtualenv (*nix)
if: ${{ matrix.machine != 'pv-windows' }}
run: |
Expand All @@ -50,12 +56,6 @@ jobs:
.venv\Scripts\activate
echo PATH=$PATH >> $GITHUB_ENV
# ************REMOVE AFTER RELEASE ***************
- name: build local binding
run: python3 -m pip install setuptools && python3 -m pip install wheel && python3 -m setup sdist bdist_wheel
working-directory: binding/python
# ************REMOVE AFTER RELEASE ***************

- name: Install Python dependencies
run: python3 -m pip install -r requirements.txt

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ jobs:
steps:
- uses: actions/checkout@v3

# ************REMOVE AFTER RELEASE ***************
- name: build local binding
run: python3 -m pip install setuptools && python3 -m pip install wheel && python3 -m setup sdist bdist_wheel
working-directory: binding/python
# ************REMOVE AFTER RELEASE ***************

- name: Setup Python virtualenv (*nix)
if: ${{ matrix.machine != 'pv-windows' }}
run: |
Expand All @@ -58,12 +64,6 @@ jobs:
binding\python\.venv\Scripts\activate
echo PATH=$PATH >> $GITHUB_ENV
# ************REMOVE AFTER RELEASE ***************
- name: build local binding
run: python3 -m pip install setuptools && python3 -m pip install wheel && python3 -m setup sdist bdist_wheel
working-directory: binding/python
# ************REMOVE AFTER RELEASE ***************

- name: Install Python dependencies
run: python3 -m pip install -r binding/python/requirements.txt

Expand Down

0 comments on commit 2592920

Please sign in to comment.