From 3877c5c69da81a7914ea02bbb36fcf101c409771 Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Wed, 2 Apr 2025 09:50:56 -0400 Subject: [PATCH] set release version 0.8.0 (#2476) * set release version 0.8.0 * make sure to include ring-flash-attn in docker image build --- docker/Dockerfile | 4 ++-- src/axolotl/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index aaaff23ef..e23a729d4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -20,9 +20,9 @@ WORKDIR /workspace/axolotl # If AXOLOTL_EXTRAS is set, append it in brackets RUN if [ "$AXOLOTL_EXTRAS" != "" ] ; then \ - pip install --no-build-isolation -e .[deepspeed,flash-attn,optimizers,ray,$AXOLOTL_EXTRAS] $AXOLOTL_ARGS; \ + pip install --no-build-isolation -e .[deepspeed,flash-attn,ring-flash-attn,optimizers,ray,$AXOLOTL_EXTRAS] $AXOLOTL_ARGS; \ else \ - pip install --no-build-isolation -e .[deepspeed,flash-attn,optimizers,ray] $AXOLOTL_ARGS; \ + pip install --no-build-isolation -e .[deepspeed,flash-attn,ring-flash-attn,optimizers,ray] $AXOLOTL_ARGS; \ fi RUN python scripts/unsloth_install.py | sh diff --git a/src/axolotl/__init__.py b/src/axolotl/__init__.py index d3c03cbea..b4d8b75b7 100644 --- a/src/axolotl/__init__.py +++ b/src/axolotl/__init__.py @@ -4,4 +4,4 @@ import pkgutil __path__ = pkgutil.extend_path(__path__, __name__) # Make this a namespace package -__version__ = "0.8.0.dev0" +__version__ = "0.8.0"