File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ jobs:
191191 - name : Update version to dev
192192 id : update-version
193193 run : |
194- NEW_VERSION="$(python scripts/ci /versiontool.py --set dev)"
194+ NEW_VERSION="$(poetry run scripts/versiontool.py --set dev)"
195195 git commit -a -m "chore: update version to v$NEW_VERSION"
196196 echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
197197
Original file line number Diff line number Diff line change 99from pathlib import Path
1010from typing import NamedTuple , NoReturn
1111
12- TARGET_FILE = Path ("disnake /__init__.py" )
12+ TARGET_FILE = Path ("src/disnake_compass /__init__.py" )
1313ORIG_INIT_CONTENTS = TARGET_FILE .read_text ("utf-8" )
1414
1515version_re = re .compile (r"(\d+)\.(\d+)\.(\d+)(?:(a|b|rc)(\d+)?)?" )
You can’t perform that action at this time.
0 commit comments