From 1678f9df6d8528a4fe3444c3d75a4fe21e85aa97 Mon Sep 17 00:00:00 2001 From: Nathan Lambert Date: Fri, 4 Oct 2024 16:35:20 -0700 Subject: [PATCH] Bump version post release (#196) --- rewardbench/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rewardbench/__init__.py b/rewardbench/__init__.py index 05d7ea9..34fc5ab 100644 --- a/rewardbench/__init__.py +++ b/rewardbench/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.1.3" +__version__ = "0.1.4" from .chattemplates import * # noqa from .dpo import DPOInference from .models import DPO_MODEL_CONFIG, REWARD_MODEL_CONFIG diff --git a/setup.py b/setup.py index 02a5ec0..2b0617a 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ # this has not yet been pushed to pypyi-test setup( name="rewardbench", - version="0.1.3", # do not import from init, or we get a weird build error + version="0.1.4", # do not import from init, or we get a weird build error author="Nathan Lambert", author_email="nathanl@allenai.org", description="Tools for evaluating reward models",