Skip to content

Commit 3877c5c

Browse files
authored
set release version 0.8.0 (axolotl-ai-cloud#2476)
* set release version 0.8.0 * make sure to include ring-flash-attn in docker image build
1 parent adb593a commit 3877c5c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ WORKDIR /workspace/axolotl
2020

2121
# If AXOLOTL_EXTRAS is set, append it in brackets
2222
RUN if [ "$AXOLOTL_EXTRAS" != "" ] ; then \
23-
pip install --no-build-isolation -e .[deepspeed,flash-attn,optimizers,ray,$AXOLOTL_EXTRAS] $AXOLOTL_ARGS; \
23+
pip install --no-build-isolation -e .[deepspeed,flash-attn,ring-flash-attn,optimizers,ray,$AXOLOTL_EXTRAS] $AXOLOTL_ARGS; \
2424
else \
25-
pip install --no-build-isolation -e .[deepspeed,flash-attn,optimizers,ray] $AXOLOTL_ARGS; \
25+
pip install --no-build-isolation -e .[deepspeed,flash-attn,ring-flash-attn,optimizers,ray] $AXOLOTL_ARGS; \
2626
fi
2727

2828
RUN python scripts/unsloth_install.py | sh

src/axolotl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__path__ = pkgutil.extend_path(__path__, __name__) # Make this a namespace package
66

7-
__version__ = "0.8.0.dev0"
7+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)