Skip to content

Commit

Permalink
fix: fix a syntax error in setup.py
Browse files Browse the repository at this point in the history
correct comma location in setup.py
  • Loading branch information
OmarIthawi committed Aug 15, 2023
1 parent 3a7d023 commit d077a60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
if: env.NEXT_VERSION
run: |
NEXT_VERSION_PYPI=${NEXT_VERSION:1} # Remove the leading 'v' to match PyPi's versioning scheme
sed -i -e "s/version=.*,/version='$NEXT_VERSION_PYPI' # tagged by release.yml,/" setup.py
sed -i -e "s/version=.*,/version='$NEXT_VERSION_PYPI', # tagged by release.yml/" setup.py
cat setup.py # Debug setup.py output
- name: Build package
Expand Down

0 comments on commit d077a60

Please sign in to comment.