@@ -151,12 +151,9 @@ jobs:
151151 sudo apt-get update &&
152152 sudo apt-get install -y clang curl libssl-dev llvm libudev-dev protobuf-compiler
153153
154- - name : Install uv
155- uses : astral-sh/setup-uv@v5
156-
157154 - name : Create Python virtual environment
158155 working-directory : ${{ github.workspace }}
159- run : uv venv ${{ github.workspace }}/venv
156+ run : python3 -m venv ${{ github.workspace }}/venv
160157
161158 - name : Clone Bittensor SDK repo
162159 working-directory : ${{ github.workspace }}
@@ -168,8 +165,8 @@ jobs:
168165 source ${{ github.workspace }}/venv/bin/activate
169166 git checkout staging
170167 git fetch origin staging
171- uv run --active pip install --upgrade pip
172- uv run --active pip install '.[dev]'
168+ python3 -m pip install --upgrade pip
169+ python3 -m pip install '.[dev]'
173170
174171 - name : Clone Bittensor async-substrate-interface repo
175172 run : git clone https://github.com/opentensor/async-substrate-interface.git
@@ -185,8 +182,8 @@ jobs:
185182 working-directory : ${{ github.workspace }}
186183 run : |
187184 source ${{ github.workspace }}/venv/bin/activate
188- uv run --active pip uninstall async-substrate-interface -y
189- uv run --active pip install .
185+ python3 -m pip uninstall async-substrate-interface -y
186+ python3 -m pip install .
190187
191188 - name : Download Cached Docker Image
192189 uses : actions/download-artifact@v4
@@ -200,7 +197,7 @@ jobs:
200197 working-directory : ${{ github.workspace }}
201198 run : |
202199 source ${{ github.workspace }}/venv/bin/activate
203- pytest ${{ matrix.test-file }} -s
200+ python3 -m pytest ${{ matrix.test-file }} -s
204201
205202
206203 run-integration-and-unit-test :
@@ -219,7 +216,7 @@ jobs:
219216
220217 - name : Create Python virtual environment
221218 working-directory : ${{ github.workspace }}
222- run : python3 -m venv venv
219+ run : python3 -m venv ${{ github.workspace }}/ venv
223220
224221 - name : Clone Bittensor SDK repo
225222 working-directory : ${{ github.workspace }}
@@ -249,8 +246,8 @@ jobs:
249246 working-directory : ${{ github.workspace }}
250247 run : |
251248 source ${{ github.workspace }}/venv/bin/activate
252- pip uninstall async-substrate-interface -y
253- pip install .
249+ python3 -m pip uninstall async-substrate-interface -y
250+ python3 -m pip install .
254251
255252 - name : Run SDK integration tests
256253 working-directory : ${{ github.workspace }}
0 commit comments