Drop Python 3.9 support as it reached EOL

This commit is contained in:
Andrej730
2025-12-19 18:01:05 +05:00
parent eba4405310
commit 4db9d60a97
13 changed files with 21 additions and 32 deletions
@@ -55,11 +55,7 @@ from collections import namedtuple
from typing import Union, Any, Optional, TYPE_CHECKING
from collections.abc import Iterator
from logging import Logger, Handler
if sys.version_info >= (3, 10):
from types import EllipsisType
else:
EllipsisType = type(...)
from types import EllipsisType
import ifcopenshell
import ifcopenshell.ifcopenshell_wrapper