Skip to content

Commit c862266

Browse files
committed
Drop support for 3.10
1 parent 4e23dbc commit c862266

5 files changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/build.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
strategy:
1111
matrix:
1212
include:
13-
- python-version: "3.10"
1413
- python-version: "3.11"
1514
- python-version: "3.12"
1615
- python-version: "3.13"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- Add helpers for compile_as_first and compile_as_array #63 @projkov @ruscoder
44
- Add py.typed marker, specify types for compile, evaluate
5-
- Drop support for python 3.9
5+
- Drop support for python 3.9 and 3.10
66

77
## 2.1.0
88

Pipfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ antlr4-python3-runtime = "~=4.10"
88
python-dateutil = "~=2.8"
99

1010
[dev-packages]
11-
exceptiongroup = {version = "*", markers = "python_version < '3.11'"}
12-
fhirpy-types-r4b = "==0.1.1"
1311
pytest = "==7.1.1"
1412
pytest-cov = "==3.0.0"
1513
pyyaml = "==6.0.1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fhirpath.py
44
[![Build Status](https://github.com/beda-software/fhirpath-py/actions/workflows/build.yaml/badge.svg)](https://github.com/beda-software/fhirpath-py/actions)
55
[![codecov](https://codecov.io/gh/beda-software/fhirpath-py/branch/master/graph/badge.svg)](https://codecov.io/gh/beda-software/fhirpath-py)
66
[![pypi](https://img.shields.io/pypi/v/fhirpathpy.svg)](https://pypi.org/project/fhirpathpy/)
7-
[![Supported Python version](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/release/python-3100/)
7+
[![Supported Python version](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/release/python-3110/)
88

99
[FHIRPath](https://www.hl7.org/fhir/fhirpath.html) implementation in Python
1010

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,14 @@ classifiers = [
2626
"Operating System :: OS Independent",
2727
"Programming Language :: Python",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.10",
3029
"Programming Language :: Python :: 3.11",
3130
"Programming Language :: Python :: 3.12",
3231
"Programming Language :: Python :: 3.13",
3332
"Topic :: Internet :: WWW/HTTP",
3433
"Topic :: Software Development :: Libraries :: Python Modules",
3534
"Typing :: Typed",
3635
]
37-
requires-python = ">=3.10"
36+
requires-python = ">=3.11"
3837

3938
[project.optional-dependencies]
4039
test = ["pytest==7.1.1", "pyyaml==5.4", "fhirpy-types-r4b==0.1.1"]
@@ -47,7 +46,7 @@ Changelog = "https://github.com/beda-software/fhirpath-py/blob/master/CHANGELOG.
4746

4847

4948
[tool.ruff]
50-
target-version = "py310"
49+
target-version = "py311"
5150
line-length = 100
5251
include = ["fhirpathpy/**/*.py", "tests/**/*.py"]
5352

@@ -58,7 +57,7 @@ ignore = ["E501", "N803", "N806"]
5857
unfixable = ["F401"]
5958

6059
[tool.mypy]
61-
python_version = "3.10"
60+
python_version = "3.11"
6261
ignore_missing_imports = true
6362
plugins = ["pydantic.mypy"]
6463

0 commit comments

Comments
 (0)