Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 283f3a5

Browse files
test
1 parent 4f2dff5 commit 283f3a5

File tree

1 file changed

+19
-12
lines changed

1 file changed

+19
-12
lines changed

.github/workflows/python-package.yml

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,26 @@ jobs:
5050
- name: prepare python package windows
5151
if : runner.os == 'windows'
5252
run: |
53-
where python
54-
55-
56-
- name: Install dependencies Windows and Linux
57-
if: runner.os == 'windows' || runner.os == 'linux'
53+
PYTHON_PATH=$(where python)
54+
echo $PYTHON_PATH
55+
56+
- name: prepare python package windows
57+
if : runner.os != 'windows'
5858
run: |
59-
python3 -m pip install --upgrade pip
60-
python3 -m pip install -r ${{env.MODEL_DIR}}/requirements.cuda.txt
59+
PYTHON_PATH=$(which python)
60+
echo $PYTHON_PATH
61+
62+
63+
# - name: Install dependencies Windows and Linux
64+
# if: runner.os == 'windows' || runner.os == 'linux'
65+
# run: |
66+
# python3 -m pip install --upgrade pip
67+
# python3 -m pip install -r ${{env.MODEL_DIR}}/requirements.cuda.txt
6168

62-
- name: Install dependencies Mac
63-
if: runner.os == 'macOS'
64-
run: |
65-
python3 -m pip install --upgrade pip
66-
python3 -m pip install -r ${{env.MODEL_DIR}}/requirements.txt
69+
# - name: Install dependencies Mac
70+
# if: runner.os == 'macOS'
71+
# run: |
72+
# python3 -m pip install --upgrade pip
73+
# python3 -m pip install -r ${{env.MODEL_DIR}}/requirements.txt
6774

6875

0 commit comments

Comments
 (0)