Closed
Description
I have found that the python interpreter versions for maturin and nox are in different versions:
# Makefile
build:
maturin build --interpreter python3.7 python3.8 python3.9 python3.10 python3.11
#noxfile.py
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])
def test(session):
session.install("-rrequirements-dev.txt")
session.install("-e", ".", "--no-build-isolation")
session.run("pytest", *session.posargs)
Will this lead to unexpected behavior?