Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c8e492 commit da7a62dCopy full SHA for da7a62d
2 files changed
crates/pyhq/pyproject.toml
@@ -11,11 +11,11 @@ classifiers = [
11
requires-python = ">=3.6"
12
description = "HyperQueue Python API"
13
dependencies = [
14
- "cloudpickle==2.0",
+ "cloudpickle>=2.0,<3",
15
"tqdm>=4.60,<5"
16
]
17
18
[project.optional-dependencies]
19
all = [
20
- "pydot==1.4.2"
+ "pydot>=1.4,<2"
21
scripts/check.sh
@@ -21,7 +21,7 @@ cargo test
cargo build --all
22
23
# Build Python binding
24
-maturin develop --manifest-path crates/pyhq/Cargo.toml
+maturin develop --manifest-path crates/pyhq/Cargo.toml --extras all
25
26
# Test Python code
27
python -m pytest tests -n32
0 commit comments