From a28b4cfc6e80223a19b2ec5e18a028f3936074ea Mon Sep 17 00:00:00 2001 From: Lewis Tunstall Date: Thu, 26 Oct 2023 10:17:28 +0000 Subject: [PATCH] Bump dev version --- setup.py | 5 +++-- src/alignment/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a15992e..1171ba4 100644 --- a/setup.py +++ b/setup.py @@ -105,10 +105,11 @@ install_requires = [ deps["tensorboard"], deps["tqdm"], # progress bars in model download and training scripts deps["transformers"], + deps["trl"] ] setup( - name="alignment", + name="alignment-handbook", version="0.2.0.dev0", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots) author="The Hugging Face team (past and future)", author_email="lewis@huggingface.co", @@ -117,7 +118,7 @@ setup( long_description_content_type="text/markdown", keywords="nlp deep learning rlhf llm", license="Apache", - url="https://github.com/huggingface/alignment", + url="https://github.com/huggingface/alignment-handbook", package_dir={"": "src"}, packages=find_packages("src"), zip_safe=False, diff --git a/src/alignment/__init__.py b/src/alignment/__init__.py index 4b4a921..b9d465b 100644 --- a/src/alignment/__init__.py +++ b/src/alignment/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0.dev0" +__version__ = "0.2.0.dev0"