Skip to content

Commit 2a1c8ef

Browse files
committed
Bump minimum
1 parent 9f75ecb commit 2a1c8ef

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ classifiers = [
2828
"Framework :: Sphinx",
2929
"Natural Language :: English",
3030
"Programming Language :: Python",
31-
"Programming Language :: Python :: 3.10",
3231
"Programming Language :: Python :: 3.11",
3332
"Programming Language :: Python :: 3.12",
3433
"Programming Language :: Python :: 3.13",
@@ -54,7 +53,7 @@ license-files = [
5453
"LICENSE",
5554
]
5655

57-
requires-python = ">=3.10"
56+
requires-python = ">=3.11"
5857
dependencies = [
5958
"click",
6059
"tqdm",

src/biomappings/paper_analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from collections.abc import Iterable, Mapping
1111
from dataclasses import dataclass
1212
from pathlib import Path
13+
from typing import Self
1314

1415
import bioontologies
1516
import bioregistry
@@ -18,7 +19,6 @@
1819
from bioregistry import NormalizedReference
1920
from tabulate import tabulate
2021
from tqdm.auto import tqdm
21-
from typing_extensions import Self
2222

2323
__all__ = [
2424
"Result",

0 commit comments

Comments
 (0)