We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c77caee commit 0c6f024Copy full SHA for 0c6f024
examples/rust_with_cffi/noxfile.py
@@ -7,7 +7,13 @@
7
8
@nox.session()
9
def test(session: nox.Session):
10
- session.install(SETUPTOOLS_RUST, "wheel", "pytest", "cffi")
+ session.install(SETUPTOOLS_RUST, "wheel", "pytest")
11
+
12
+ try:
13
+ session.install("cffi", "--only-binary=cffi")
14
+ except nox.command.CommandFailed:
15
+ session.skip("cffi not available on this platform")
16
17
# Ensure build uses version of setuptools-rust under development
18
session.install("--no-build-isolation", ".")
19
# Test Python package
0 commit comments