Skip to content

Commit

Permalink
Make 3.8 compatiable
Browse files Browse the repository at this point in the history
  • Loading branch information
mahaloz committed Dec 6, 2023
1 parent 2baf01b commit ba306fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libbs/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.6"
__version__ = "0.6.7"
2 changes: 1 addition & 1 deletion libbs/plugin_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(self, targets=None, target_install_paths=None):

@staticmethod
def find_pkg_files(pkg_name):
if sys.version_info > (3, 8):
if sys.version_info >= (3, 9):
import importlib.resources
path = str(importlib.resources.files(pkg_name))
else:
Expand Down

0 comments on commit ba306fb

Please sign in to comment.