Skip to content

Commit 899d441

Browse files
committed
build: add if statement for specific python-version to run uv publish
1 parent aa8522c commit 899d441

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ jobs:
4141
run: grep -r "version" pyproject.toml || grep -r "__version__" rtichoke/ || python -c "import rtichoke; print(rtichoke.__version__)"
4242

4343
- name: Publish package
44+
if: github.ref == 'refs/heads/main' && matrix.python-version == '3.10'
4445
run: uv publish

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies = [
1414
"importlib>=1.0.4",
1515
]
1616
name = "rtichoke"
17-
version = "0.1.9"
17+
version = "0.1.10"
1818
description = "interactive visualizations for performance of predictive models"
1919
readme = "README.md"
2020

0 commit comments

Comments
 (0)