Skip to content

Commit

Permalink
ci: fix whl build
Browse files Browse the repository at this point in the history
  • Loading branch information
long2ice committed Feb 3, 2023
1 parent 85f400b commit 891ad37
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: pypi
on: [push, pull_request]
on:
release:
types:
- created
jobs:
build_wheels:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -28,7 +31,6 @@ jobs:
upload:
runs-on: ubuntu-latest
needs: [ build_wheels, build_sdist ]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion asyncmy/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "0.2.7-rc5"
__VERSION__ = "0.2.7-rc6"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ packages = [
]
readme = "README.md"
repository = "https://github.com/long2ice/asyncmy.git"
version = "0.2.7-rc5"
version = "0.2.7-rc6"

[tool.poetry.dependencies]
python = "^3.7"
Expand Down

0 comments on commit 891ad37

Please sign in to comment.