From b6d65f0f9a38cf053fdc44ea63cf45632426e083 Mon Sep 17 00:00:00 2001
From: Yoann Schneider <yschneider@teklia.com>
Date: Tue, 14 May 2024 09:45:21 +0000
Subject: [PATCH] Require python3.10+

---
 nerval/evaluate.py | 3 +--
 nerval/parse.py    | 3 +--
 pyproject.toml     | 1 +
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/nerval/evaluate.py b/nerval/evaluate.py
index 1c94728..d741a83 100644
--- a/nerval/evaluate.py
+++ b/nerval/evaluate.py
@@ -1,7 +1,6 @@
 import csv
 import logging
 from pathlib import Path
-from typing import List
 
 import editdistance
 import edlib
@@ -322,7 +321,7 @@ def run(annotation: Path, prediction: Path, threshold: int, verbose: bool) -> di
     """
 
     # Get string and list of labels per character
-    def read_file(path: Path) -> List[str]:
+    def read_file(path: Path) -> list[str]:
         assert path.exists(), f"Error: Input file {path} does not exist"
         return path.read_text().strip().splitlines()
 
diff --git a/nerval/parse.py b/nerval/parse.py
index 31cc3c3..abd4100 100644
--- a/nerval/parse.py
+++ b/nerval/parse.py
@@ -1,5 +1,4 @@
 import re
-from typing import List
 
 from nerval import ALL_ENTITIES
 
@@ -51,7 +50,7 @@ def parse_line(index: int, line: str):
         raise Exception(f"The file is not in BIO format: check line {index} ({line})")
 
 
-def parse_bio(lines: List[str]) -> dict:
+def parse_bio(lines: list[str]) -> dict:
     """Parse a BIO file to get text content, character-level NE labels and entity types count.
 
     Input: lines of a valid BIO file
diff --git a/pyproject.toml b/pyproject.toml
index 551eac3..c875eb7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -14,6 +14,7 @@ maintainers = [
     { name = "Teklia", email = "contact@teklia.com" },
 ]
 readme = { file = "README.md", content-type = "text/markdown" }
+requires-python = ">=3.10"
 
 [project.scripts]
 nerval = "nerval.cli:main"
-- 
GitLab