Skip to content

Commit 771c04f

Browse files
committed
Fix publish CI job to use publish url. Update alpha version.
1 parent 40ca595 commit 771c04f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: github.event.inputs.repository == 'test'
3131
env:
3232
UV_PUBLISH_TOKEN: ${{ secrets.TEST_PYPI_TOKEN }}
33-
run: uv publish --token $UV_PUBLISH_TOKEN --index-url https://test.pypi.org/legacy/
33+
run: uv publish --token $UV_PUBLISH_TOKEN --publish-url https://test.pypi.org/legacy/
3434

3535
- name: Publish to Regular PyPI
3636
if: github.event.inputs.repository == 'pypi'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "judge0"
3-
version = "0.0.6-alpha.2"
3+
version = "0.0.6-alpha.3"
44
description = "The official Python SDK for Judge0."
55
readme = "README.md"
66
requires-python = ">=3.10"

src/judge0/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from .retry import MaxRetries, MaxWaitTime, RegularPeriodRetry
3131
from .submission import Submission
3232

33-
__version__ = "0.0.6-alpha.2"
33+
__version__ = "0.0.6-alpha.3"
3434

3535
__all__ = [
3636
"ATD",

0 commit comments

Comments
 (0)