We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c923a9 commit b6571a8Copy full SHA for b6571a8
noxfile.py
@@ -121,7 +121,12 @@ def test_rust(session: nox.Session):
121
# We need to pass the feature set to the test command
122
# so that it can be used in the test code
123
# (e.g. for `#[cfg(feature = "abi3-py37")]`)
124
- if feature_set and "abi3" in feature_set and FREE_THREADED_BUILD and sys.version_info < (3, 15):
+ if (
125
+ feature_set
126
+ and "abi3" in feature_set
127
+ and FREE_THREADED_BUILD
128
+ and sys.version_info < (3, 15)
129
+ ):
130
# free-threaded builds don't support abi3 yet
131
continue
132
0 commit comments