Skip to content

Commit

Permalink
remove typing and typing_extensions deps (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariostieriansys authored Nov 10, 2023
1 parent f721eac commit 8cf3805
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ dependencies = [
"requests>=2.28.2",
"docker>=6.1.0",
"urllib3<2",
"typing>=3.7.4.3",
"typing-extensions>=4.5.0",
"numpy>=1.21.0",
"Pillow>=9.3.0"
]
Expand Down
3 changes: 1 addition & 2 deletions src/ansys/pyensight/core/listobj.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
"""
from collections.abc import Iterable
import fnmatch
from typing import Any, List, Optional, TypeVar, no_type_check, overload
from typing import Any, List, Optional, SupportsIndex, TypeVar, no_type_check, overload

from ansys.pyensight.core.ensobj import ENSOBJ
from typing_extensions import SupportsIndex

T = TypeVar("T")

Expand Down

0 comments on commit 8cf3805

Please sign in to comment.