feat: adding support for python 3.8, 3.9

This commit is contained in:
Mose Müller
2023-09-18 18:10:36 +02:00
parent 55ab705542
commit f948605b58
18 changed files with 1464 additions and 570 deletions

View File

@@ -1,4 +1,10 @@
from collections.abc import Generator
import sys
if sys.version_info < (3, 10):
from typing import Generator
else:
from collections.abc import Generator
from typing import Any
import pytest