We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b88d11 commit 9211ae8Copy full SHA for 9211ae8
lambda_local/__init__.py
@@ -7,12 +7,11 @@
7
8
from __future__ import print_function
9
import argparse
10
-import pkg_resources
+import importlib.metadata
11
12
from .main import run
13
14
-__version__ = pkg_resources.require("python-lambda-local")[0].version
15
-
+__version__ = importlib.metadata.version("python-lambda-local")
16
17
def main():
18
args = parse_args()
0 commit comments