Skip to content

Commit

Permalink
remove zict as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Morris committed May 13, 2024
1 parent 5449ecc commit 27f061b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ dependencies = [
"scipy",
"tables",
"torch",
"zict<3.0.0",
]

classifiers = [
Expand Down
6 changes: 3 additions & 3 deletions src/blop/dofs.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@

DOF_FIELD_TYPES = {
"description": "str",
"units": "str",
"readback": "object",
"type": "str",
"units": "str",
"active": "bool",
"read_only": "bool",
"tags": "object",
"transform": "str",
"search_domain": "object",
"trust_domain": "object",
"domain": "object",
"active": "bool",
"read_only": "bool",
}

DOF_TYPES = ["continuous", "binary", "ordinal", "categorical"]
Expand Down
1 change: 1 addition & 0 deletions src/blop/objectives.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"name": "str",
"description": "object",
"type": "str",
"kind": "str",
"target": "object",
"transform": "str",
"domain": "str",
Expand Down

0 comments on commit 27f061b

Please sign in to comment.