Skip to content

Commit d5ea943

Browse files
authored
Merge pull request #100 from ezmsg-org/test_313
Add Python 3.13 to test suite and cleanup GHA scripts slightly
2 parents 10f6b6d + b656f61 commit d5ea943

File tree

5 files changed

+8
-745
lines changed

5 files changed

+8
-745
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.15", "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:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,5 @@ cython_debug/
142142
# JetBrains
143143
.idea/
144144

145-
src/ezmsg/sigproc/__version__.py
145+
src/ezmsg/sigproc/__version__.py
146+
uv.lock

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)