From ce1bfb38aabf39d77dd83bb51120139cef597025 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Thu, 2 Jan 2025 21:32:14 +0100 Subject: [PATCH] chg: Bump typing --- .github/workflows/pytest.yml | 2 +- pymispwarninglists/api.py | 2 ++ tests/tests.py | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index d588d8f..d63abc0 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] + python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] steps: diff --git a/pymispwarninglists/api.py b/pymispwarninglists/api.py index 5f6e984..28c6a70 100644 --- a/pymispwarninglists/api.py +++ b/pymispwarninglists/api.py @@ -1,6 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import annotations + import json import logging import sys diff --git a/tests/tests.py b/tests/tests.py index d5c7327..d2771d3 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -1,6 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import annotations + import json import os import unittest