From 88abfc90f924b700ee19049aad1db983571d3b29 Mon Sep 17 00:00:00 2001 From: Alex Rogozhnikov Date: Tue, 19 Nov 2024 15:43:04 -0800 Subject: [PATCH] bump version (#157) --- README.md | 4 ++-- chai_lab/__init__.py | 2 +- chai_lab/utils/typing.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 21c6287..d9c7798 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 diff --git a/chai_lab/__init__.py b/chai_lab/__init__.py index 6a7a25d..e982bc9 100644 --- a/chai_lab/__init__.py +++ b/chai_lab/__init__.py @@ -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" diff --git a/chai_lab/utils/typing.py b/chai_lab/utils/typing.py index 35da54c..2327058 100644 --- a/chai_lab/utils/typing.py +++ b/chai_lab/utils/typing.py @@ -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