File tree 4 files changed +15
-11
lines changed
4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change
1
+ """
2
+ Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ """
4
+
5
+ __version__ = "1.2.2"
Original file line number Diff line number Diff line change 5
5
import http
6
6
import http .client
7
7
import sys
8
-
9
- try :
10
- from importlib import metadata
11
- except ImportError :
12
- # Running on pre-3.8 Python; use importlib-metadata package
13
- import importlib_metadata as metadata
8
+ from awslambdaric import __version__
14
9
15
10
16
11
def _user_agent ():
17
12
py_version = (
18
13
f"{ sys .version_info .major } .{ sys .version_info .minor } .{ sys .version_info .micro } "
19
14
)
20
- try :
21
- pkg_version = metadata .version ("awslambdaric" )
22
- except :
23
- pkg_version = "unknown"
15
+ pkg_version = __version__
24
16
return f"aws-lambda-python/{ py_version } -{ pkg_version } "
25
17
26
18
Original file line number Diff line number Diff line change 7
7
import platform
8
8
from subprocess import check_call , check_output
9
9
from setuptools import Extension , find_packages , setup
10
+ from awslambdaric import __version__
10
11
11
12
12
13
def get_curl_extra_linker_flags ():
@@ -68,7 +69,7 @@ def read_requirements(req="base.txt"):
68
69
69
70
setup (
70
71
name = "awslambdaric" ,
71
- version = "1.2.1" ,
72
+ version = __version__ ,
72
73
author = "Amazon Web Services" ,
73
74
description = "AWS Lambda Runtime Interface Client for Python" ,
74
75
long_description = read ("README.md" ),
Original file line number Diff line number Diff line change 6
6
import http .client
7
7
import unittest .mock
8
8
from unittest .mock import MagicMock , patch
9
+ from awslambdaric import __version__
10
+
9
11
10
12
from awslambdaric .lambda_runtime_client import (
11
13
LambdaRuntimeClient ,
12
14
LambdaRuntimeClientError ,
13
15
InvocationRequest ,
16
+ _user_agent ,
14
17
)
15
18
16
19
@@ -205,6 +208,9 @@ def test_invalid_addr(self):
205
208
runtime_client = LambdaRuntimeClient ("::::" )
206
209
runtime_client .post_init_error ("error" )
207
210
211
+ def test_lambdaric_version (self ):
212
+ self .assertTrue (_user_agent ().endswith (__version__ ))
213
+
208
214
209
215
class TestLambdaRuntimeClientError (unittest .TestCase ):
210
216
def test_constructor (self ):
You can’t perform that action at this time.
0 commit comments