Skip to content

Commit

Permalink
Merge pull request #168 from kcl-lang/fix-py-release
Browse files Browse the repository at this point in the history
fix: fix python release
  • Loading branch information
zong-zhe authored Dec 9, 2024
2 parents f39bbfe + a507d2d commit 9767071
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
if: "startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'"
permissions:
contents: read
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ build-backend = "maturin"

[project]
name = "kcl_lib"
version = "0.11.0-alpha.1"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
description = "KCL Programming Language Python Lib"
license = { text = "Apache-2.0" }

Expand Down

0 comments on commit 9767071

Please sign in to comment.