Skip to content

Commit 9767071

Browse files
authored
Merge pull request #168 from kcl-lang/fix-py-release
fix: fix python release
2 parents f39bbfe + a507d2d commit 9767071

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
release:
100100
name: Release
101101
runs-on: ubuntu-latest
102-
if: "startsWith(github.ref, 'refs/tags/')"
102+
if: "startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'"
103103
permissions:
104104
contents: read
105105
id-token: write

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ build-backend = "maturin"
44

55
[project]
66
name = "kcl_lib"
7+
version = "0.11.0-alpha.1"
78
requires-python = ">=3.7"
89
classifiers = [
910
"Programming Language :: Rust",
1011
"Programming Language :: Python :: Implementation :: CPython",
1112
"Programming Language :: Python :: Implementation :: PyPy",
1213
]
13-
dynamic = ["version"]
1414
description = "KCL Programming Language Python Lib"
1515
license = { text = "Apache-2.0" }
1616

0 commit comments

Comments
 (0)