Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ dependencies = [
"taylorism",
"tomli",
"arpifs_listings",
"importlib_metadata; python_version < '3.8'",
# Selectable entrypoints from importlib_metadata 3.6
"importlib_metadata>=3.6; python_version < '3.8'",
"pyyaml",
]

Expand Down
3 changes: 2 additions & 1 deletion src/vortex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import copy
from pathlib import Path
import sys
from typing import Set # Python 3.7 compat

# importlib.metadata included in stdlib from 3.8 onwards.
# For older versions, import third-party importlib_metadata
Expand Down Expand Up @@ -135,7 +136,7 @@ def vortexfpdefaults():
_LOADED_PLUGINS.add(plugin.name)


def loaded_plugins() -> set[str]:
def loaded_plugins() -> Set[str]:
"""Return the set of names for loaded plugins

**Example:**
Expand Down
Loading