Skip to content

Commit

Permalink
bump version (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
arogozhnikov authored Nov 19, 2024
1 parent 1c3ff6b commit 88abfc9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For more information on the model's performance and capabilities, see our [techn
# current version (updates daily):
pip install git+https://github.com/chaidiscovery/chai-lab.git
# version on pypi:
pip install chai_lab==0.2.1
pip install chai_lab==0.3.0
```

This Python package requires Linux, and a GPU with CUDA and bfloat16 support. We recommend using an A100 80GB or H100 80GB chip, but A10s and A30s should work for smaller complexes. Users have also reported success with consumer-grade RTX 4090.
Expand Down Expand Up @@ -77,7 +77,7 @@ Devcontainers work on local Linux setup, and on remote machines over an SSH conn
Since this is an initial release, we expect to make some breaking changes to the API and are not guaranteeing backwards compatibility. We recommend pinning the current version in your requirements, i.e.:

```
chai_lab==0.2.1
chai_lab==0.3.0
```

## Citations
Expand Down
2 changes: 1 addition & 1 deletion chai_lab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# This source code is licensed under the Chai Discovery Community License
# Agreement (LICENSE.md) found in the root directory of this source tree.

__version__ = "0.2.1"
__version__ = "0.3.0"
2 changes: 1 addition & 1 deletion chai_lab/utils/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

def typecheck(cls_or_func: Func) -> Func:
if should_typecheck:
return jaxtyped(typechecker=beartype)(cls_or_func)
return jaxtyped(typechecker=beartype)(cls_or_func) # type: ignore
else:
return cls_or_func

Expand Down

0 comments on commit 88abfc9

Please sign in to comment.