Skip to content

Commit e1a8957

Browse files
authored
Merge pull request #122 from jamesobutler/python-version-update
Drop Python 3.9 support
2 parents c4f5494 + 3573123 commit e1a8957

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/run_unit_tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version: [
19-
"3.9",
2019
"3.10",
2120
"3.11",
2221
"3.12",
@@ -28,15 +27,15 @@ jobs:
2827
- name: Set up Python ${{ matrix.python-version }}
2928
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
3029
with:
31-
python-version: ${{ matrix.python-version }}
30+
python-version: ${{ matrix.python-version }}
3231
- name: Install uv
3332
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
3433
with:
3534
version: "0.7.2"
3635
- name: Install dependencies
3736
run: uv sync
3837
- name: Lint with flake8
39-
run: uv run flake8 src tests --exclude=.venv,build,.eggs
38+
run: uv run flake8 src tests --exclude=.venv,build,.eggs
4039
- name: Check type hints with mypy
4140
run: uv run mypy src tests
4241
- name: Test with pytest

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "dicomweb-client"
33
dynamic = ["version"]
44
description = "Client for DICOMweb RESTful services."
55
readme = "README.md"
6-
requires-python = ">=3.9"
6+
requires-python = ">=3.10"
77
authors = [{ name = "Markus D. Herrmann" }]
88
maintainers = [
99
{ name = "Markus D. Herrmann" },
@@ -22,7 +22,6 @@ classifiers = [
2222
"Topic :: Multimedia :: Graphics",
2323
"Topic :: Scientific/Engineering :: Information Analysis",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
2726
"Programming Language :: Python :: 3.11",
2827
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)