Skip to content

Commit a17a69c

Browse files
committed
Update workflows
1 parent 3719763 commit a17a69c

File tree

6 files changed

+94
-57
lines changed

6 files changed

+94
-57
lines changed

.github/actions/build-conda-packages/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
steps:
66
- uses: conda-incubator/setup-miniconda@v3
77
with:
8-
conda-build-version: "24.7.1"
8+
conda-build-version: "24.11.2"
99

1010
- run: conda build --no-anaconda-upload --output-folder dist .
1111
# See https://github.com/conda-incubator/setup-miniconda/blame/059455a698430d8b68fa317268fa2e3da3492a98/README.md#L609-L610.

.github/actions/build-java-runtime/action.yaml

+3-9
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,13 @@ inputs:
77
runs:
88
using: composite
99
steps:
10-
- uses: astral-sh/setup-uv@v2
10+
- uses: astral-sh/setup-uv@v5
1111
with:
12-
cache-dependency-glob: "uv.lock"
1312
# The cache key already contains the OS and the architecture.
1413
cache-suffix: ${{ inputs.python-version }}
1514
enable-cache: true
16-
version: "0.4.16"
17-
18-
- run: uv python install ${{ inputs.python-version }}
19-
shell: bash
20-
21-
- run: uv sync --locked
22-
shell: bash
15+
python-version: ${{ inputs.python-version }}
16+
version: "0.5.16"
2317

2418
- id: get-java-version
2519
run: uv run python -c 'from jdk4py import JAVA_VERSION; print(f"""version={".".join(str(number) for number in JAVA_VERSION)}""")' >> "$GITHUB_OUTPUT"

.github/workflows/test.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
python: "3.11"
2323
- runner: ubuntu-24.04
2424
python: "3.12"
25+
- runner: ubuntu-24.04
26+
python: "3.13"
2527
fail-fast: false
2628
steps:
2729
- uses: actions/checkout@v4

conda.recipe/conda_build_config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ python:
22
- "3.10"
33
- "3.11"
44
- "3.12"
5+
- "3.13"

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,5 @@ dev-dependencies = [
7272
"pytest ==7.4.4",
7373
"ruff",
7474
]
75+
required-version = ">=0.5.16,<0.6"
7576
trusted-publishing = "always"

0 commit comments

Comments
 (0)