Skip to content

Commit 66eedae

Browse files
committed
Don't check PythonCall.jl version
1 parent 33a9c67 commit 66eedae

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pytest/test_all.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -172,19 +172,13 @@ def test_call_nogil(yld, raw):
172172

173173
def 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()

0 commit comments

Comments
 (0)