Skip to content

Commit 0e5cfd8

Browse files
committed
Add Python 3.13 to tests and cleanup GHA scripts slightly.
1 parent 6dbdc7b commit 0e5cfd8

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

.github/workflows/python-publish-ezmsg-sigproc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919

20-
- name: Install uv
21-
uses: astral-sh/setup-uv@v2
20+
- name: Install the latest version of uv
21+
uses: astral-sh/setup-uv@v6
2222

2323
- name: Build Package
2424
run: uv build

.github/workflows/python-tests.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414
strategy:
1515
matrix:
16-
python-version: ["3.10", "3.11", "3.12"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1717
os:
1818
- "ubuntu-latest"
1919
- "windows-latest"
@@ -23,17 +23,11 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v4
2525

26-
- name: Install uv
27-
uses: astral-sh/setup-uv@v2
28-
with:
29-
enable-cache: true
30-
cache-dependency-glob: "uv.lock"
31-
32-
- name: Set up Python ${{ matrix.python-version }}
33-
run: uv python install ${{ matrix.python-version }}
26+
- name: Install the latest version of uv
27+
uses: astral-sh/setup-uv@v6
3428

3529
- name: Install the project
36-
run: uv sync --all-extras --dev
30+
run: uv sync --python ${{ matrix.python-version }}
3731

3832
- name: Lint
3933
run:

pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ version-file = "src/ezmsg/sigproc/__version__.py"
5151
[tool.hatch.build.targets.wheel]
5252
packages = ["src/ezmsg"]
5353

54-
[tool.uv]
55-
dev-dependencies = ["pre-commit>=3.8.0", "ruff>=0.6.7"]
56-
5754
[tool.pytest.ini_options]
5855
norecursedirs = "tests/helpers"
5956
addopts = "-p no:warnings"

0 commit comments

Comments
 (0)