Skip to content

Commit

Permalink
Don't use pkg_resources
Browse files Browse the repository at this point in the history
  • Loading branch information
hcho3 committed May 1, 2023
1 parent 6b29bcf commit 96c6d46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
dependencies = [
"numpy",
"scipy",
"packaging",
"treelite>=3.3,<4",
"treelite_runtime>=3.3,<4" # TODO(hcho3): Remove
]
Expand Down
2 changes: 1 addition & 1 deletion python/tl2cgen/contrib/msvc.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
from typing import Any, Dict, List

from pkg_resources import parse_version
from packaging.version import parse as parse_version

from .create_shared import _create_shared_base
from .util import _libext
Expand Down

0 comments on commit 96c6d46

Please sign in to comment.