Skip to content

Different versions for nox and maturin build #255

Closed
@alex-au-922

Description

@alex-au-922

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?

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions