Skip to content

Commit

Permalink
Last fix for real
Browse files Browse the repository at this point in the history
Signed-off-by: Jean-Christophe Morin <[email protected]>
  • Loading branch information
JeanChristopheMorinPerso committed Feb 2, 2025
1 parent ffbe7f6 commit ab8e162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rez/plugin_managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def load_plugins_from_namespace(self):
self.print_log_plugins_error(modname, e)

def load_plugins_from_entry_points(self):
if sys.version_info[:2] < (3, 10):
if sys.version_info[:2] >= (3, 8) and sys.version_info[:2] <= (3, 9):
discovered_plugins = entry_points().get("rez.plugins", [])
else:
discovered_plugins = entry_points(group='rez.plugins')
Expand Down

0 comments on commit ab8e162

Please sign in to comment.