Fix support for python 3.10 #5662

This commit is contained in:
Andrej730
2024-10-31 18:28:18 +05:00
parent 06a6c2d79b
commit fb5d37b04b
3 changed files with 5 additions and 2 deletions
+2 -1
View File
@@ -3,7 +3,8 @@ import ifcopenshell
import ifcopenshell.api
import ifcopenshell.util.date
from datetime import datetime, timedelta, date
from typing import Union, Any, TypedDict, NotRequired
from typing import Union, Any, TypedDict
from typing_extensions import NotRequired
class WorkSlot(TypedDict):
+1
View File
@@ -17,6 +17,7 @@ classifiers = [
]
dependencies = [
"ifcopenshell",
"typing-extensions",
]
[project.urls]