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
@@ -20,11 +20,7 @@ import sys
import ifcopenshell.api.owner
import ifcopenshell.util.element
from typing import Any, Union
if sys.version_info >= (3, 10):
from types import EllipsisType
else:
EllipsisType = type(...)
from types import EllipsisType
def edit_attributes(file: ifcopenshell.file, product: ifcopenshell.entity_instance, attributes: dict[str, Any]) -> None: