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 2a6fc8e commit b2c10e5Copy full SHA for b2c10e5
noxfile.py
@@ -65,8 +65,8 @@ def tests(session: nox.Session) -> None:
65
}
66
)
67
68
- install(session, f".[{extras}]")
69
install(session, "-e", "./vectors")
+ install(session, f".[{extras}]")
70
71
session.run("pip", "list")
72
@@ -257,7 +257,11 @@ def local(session):
257
test_dependencies = pyproject_data["project"]["optional-dependencies"][
258
"test"
259
]
260
- test_dependencies.remove("cryptography_vectors")
+ test_dependencies = [
261
+ x
262
+ for x in test_dependencies
263
+ if not x.startswith("cryptography_vectors")
264
+ ]
265
install(
266
session,
267
*pyproject_data["build-system"]["requires"],
0 commit comments