mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-28 21:04:47 +00:00

- Upgrade to pyo3 0.21 to enable timedelta for chrono - Enable abi3 for multi-python support
10 lines
348 B
Python
10 lines
348 B
Python
# Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.2 OR LicenseRef-Slint-commercial
|
|
|
|
import nox
|
|
|
|
@nox.session(python="3.10")
|
|
def python(session: nox.Session):
|
|
session.env["MATURIN_PEP517_ARGS"] = "--profile=dev"
|
|
session.install(".[dev]")
|
|
session.run("pytest", "-s")
|