Skip to content

Commit

Permalink
Merge pull request #97 from ali-zahedi/fix/githubaction
Browse files Browse the repository at this point in the history
Fix/githubaction
  • Loading branch information
ali-zahedi authored Mar 28, 2024
2 parents 0acf203 + b221ec9 commit a8ac462
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/semantic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
echo "NEW_TAG=$NEW_TAG" >> $GITHUB_ENV
- name: Update package version
run: sed -i "s/__version__ = \"1.0.0\"/__version__ = \"$NEW_TAG\"/g" azbankgateways/__init__.py
run: |
echo "$NEW_TAG"
sed -i "s/__version__ = \"1.0.0\"/__version__ = \"$NEW_TAG\"/g" azbankgateways/__init__.py
- name: Build package
uses: actions/setup-python@v4
with:
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
requires = ['setuptools>=40.8.0']
build-backend = 'setuptools.build_meta'

[project]
readme = "README.md"

[tool.black]
indent = 4
line-length = 110
Expand Down

0 comments on commit a8ac462

Please sign in to comment.