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):
172
172
173
173
def test_repl ():
174
174
import sys
175
- import tomllib
176
175
import juliapkg
177
176
import juliacall as _
178
177
import subprocess
179
178
import time
180
179
181
180
jl_version = juliapkg .state .STATE ["version" ]
182
181
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
-
188
182
cmd = [sys .executable , '-m' , 'juliacall' ]
189
183
process = subprocess .Popen (
190
184
cmd ,
@@ -204,7 +198,6 @@ def test_repl():
204
198
if output .endswith ("julia>" ):
205
199
break
206
200
assert f"Julia: { jl_version } " in output
207
- assert f"PythonCall: { pythoncall_version } " in output
208
201
assert "julia>" in output
209
202
process .stdin .write ('\x04 ' ) # Ctrl+D
210
203
process .stdin .flush ()
You can’t perform that action at this time.
0 commit comments