Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
strategy:
matrix:
python-version: [
"3.9",
"3.10",
"3.11",
"3.12",
Expand All @@ -28,15 +27,15 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
with:
version: "0.7.2"
- name: Install dependencies
run: uv sync
- name: Lint with flake8
run: uv run flake8 src tests --exclude=.venv,build,.eggs
run: uv run flake8 src tests --exclude=.venv,build,.eggs
- name: Check type hints with mypy
run: uv run mypy src tests
- name: Test with pytest
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dicomweb-client"
dynamic = ["version"]
description = "Client for DICOMweb RESTful services."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
authors = [{ name = "Markus D. Herrmann" }]
maintainers = [
{ name = "Markus D. Herrmann" },
Expand All @@ -22,7 +22,6 @@ classifiers = [
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down