File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 python-version : ${{ matrix.python-version }}
2222 - name : Install dependencies
2323 run : |
24- pip install -e .
2524 # Until the next xdis release
2625 pip install git+https://github.com/rocky/python-xdis#egg=xdis
26+ pip install -e .
2727 pip install -r requirements-dev.txt
2828 - name : Test xpython
2929 run : |
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ def run_python_file(
210210 else :
211211 sys .path [0 ] = osp .abspath (osp .dirname (filename ))
212212
213- is_pypy = IS_PYPY
213+ python_implementation = PYTHON_IMPLEMENTATION
214214 try :
215215 # Open the source or bytecode file.
216216 try :
@@ -279,7 +279,7 @@ def run_python_file(
279279 code ,
280280 main_mod .__dict__ ,
281281 python_version ,
282- is_pypy ,
282+ python_implementation ,
283283 callback ,
284284 format_instruction = format_instruction ,
285285 )
Original file line number Diff line number Diff line change 1111
1212from xdis import (
1313 CO_NEWLOCALS ,
14- IS_PYPY ,
1514 PYTHON_IMPLEMENTATION ,
1615 PYTHON_VERSION_TRIPLE ,
1716 code2num ,
You can’t perform that action at this time.
0 commit comments