Skip to content

Commit ff15f26

Browse files
committed
v1.3
1 parent 022c8b1 commit ff15f26

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ RUN uv pip install . --system
2020
RUN [ -f post-script.sh ] && sh post-script.sh || true
2121

2222
# Specify the command to run main.py with uv
23-
CMD [ "uv", "run", "/action/main.py" ]
23+
CMD [ "python", "/action/main.py" ]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v4
3232

3333
- name: Updating the badge
34-
uses: lnxpy/pypi-chart-badge@v1.2
34+
uses: lnxpy/pypi-chart-badge@v1.3
3535
with:
3636
package_name: '<PACKAGE-NAME>'
3737

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pypi-chart-badge"
3-
version = "1.2.0"
3+
version = "1.3.0"
44
description = "PyPI Chart Badge Generator"
55
readme = "README.md"
66
requires-python = ">=3.12"
@@ -12,5 +12,8 @@ dependencies = [
1212
"requests==2.32.3",
1313
]
1414

15+
[tool.setuptools.packages.find]
16+
exclude = ["test*"]
17+
1518
[project.optional-dependencies]
1619
cli = ["pyaction[cli]==0.8.1"]

0 commit comments

Comments
 (0)