File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -172,19 +172,13 @@ def test_call_nogil(yld, raw):
172172
173173def test_repl ():
174174 import sys
175- import tomllib
176175 import juliapkg
177176 import juliacall as _
178177 import subprocess
179178 import time
180179
181180 jl_version = juliapkg .state .STATE ["version" ]
182181
183- # grab PythonCall.jl version from pyproject.toml
184- with open ("pyproject.toml" , "rb" ) as f :
185- pyproject = tomllib .load (f )
186- pythoncall_version = pyproject ["project" ]["version" ]
187-
188182 cmd = [sys .executable , '-m' , 'juliacall' ]
189183 process = subprocess .Popen (
190184 cmd ,
@@ -204,7 +198,6 @@ def test_repl():
204198 if output .endswith ("julia>" ):
205199 break
206200 assert f"Julia: { jl_version } " in output
207- assert f"PythonCall: { pythoncall_version } " in output
208201 assert "julia>" in output
209202 process .stdin .write ('\x04 ' ) # Ctrl+D
210203 process .stdin .flush ()
You can’t perform that action at this time.
0 commit comments