Skip to content

Commit 772cd87

Browse files
committed
fix the sed command to replace the version w the tag
1 parent 6c5fbe6 commit 772cd87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Update version in setup.py
3737
run: >-
38-
sed -E 's/version=\"([\d\.]+)",/version="${{ steps.tag.outputs.TAG_NAME }}",/g' setup.py
38+
sed -i -E 's/version="([0-9.]+)",/version="${{ steps.tag.outputs.TAG_NAME }}",/g' setup.py
3939
4040
- name: Build a binary wheel
4141
run: >-

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def parse_requirements():
2424

2525
setup(
2626
name="axolotl",
27-
version="0.1",
27+
version="0.3.0",
2828
description="LLM Trainer",
2929
long_description="Axolotl is a tool designed to streamline the fine-tuning of various AI models, offering support for multiple configurations and architectures.",
3030
package_dir={"": "src"},

0 commit comments

Comments
 (0)