Skip to content

Commit a60d478

Browse files
committed
v4.0 Python actions temp
1 parent 200d981 commit a60d478

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/python-demos.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ jobs:
4747
- name: Pre-build dependencies
4848
run: python -m pip install --upgrade pip
4949

50+
# ************** REMOVE AFTER RELEASE ********************
51+
- name: Build binding
52+
run: |
53+
pip install wheel setuptools && cd ../../binding/python && python3 setup.py sdist bdist_wheel && pip install --force-reinstall dist/pvrhino-4.0.0-py3-none-any.whl
54+
# ********************************************************
55+
5056
- name: Install dependencies
5157
run: pip install -r requirements.txt
5258

@@ -82,6 +88,12 @@ jobs:
8288
steps:
8389
- uses: actions/checkout@v3
8490

91+
# ************** REMOVE AFTER RELEASE ********************
92+
- name: Build binding
93+
run: |
94+
pip install wheel setuptools && cd ../../binding/python && python3 setup.py sdist bdist_wheel && pip install --force-reinstall dist/pvrhino-4.0.0-py3-none-any.whl
95+
# ********************************************************
96+
8597
- name: Install dependencies
8698
run: pip3 install -r requirements.txt
8799

demo/python/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
pvrhino==4.0.0
1+
../../binding/python/dist/pvrhino-4.0.0-py3-none-any.whl
2+
# pvrhino==4.0.0
23
pvrecorder==1.2.7

0 commit comments

Comments
 (0)