File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 2
2
CHANGELOG
3
3
=========
4
4
5
- 1.16.2.dev
6
- ==========
5
+ 1.16.1.post1
6
+ ============
7
7
8
- * feature: Documentation: update TensorFlow README for Script Mode
8
+ * Documentation: add documentation for Reinforcement Learning Estimator.
9
+ * Documentation: update TensorFlow README for Script Mode
9
10
10
11
1.16.1
11
12
======
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def __getattr__(cls, name):
32
32
'numpy' , 'scipy' , 'scipy.sparse' ]
33
33
sys .modules .update ((mod_name , Mock ()) for mod_name in MOCK_MODULES )
34
34
35
- version = '1.16.1'
35
+ version = '1.16.1.post1 '
36
36
project = u'sagemaker'
37
37
38
38
# Add any Sphinx extension module names here, as strings. They can be extensions
Original file line number Diff line number Diff line change 22
22
23
23
def get_version ():
24
24
root = os .path .dirname (__file__ )
25
- version_re = re .compile (r'''__version__ = ['"]([0-9.]+)['"]''' )
25
+ version_re = re .compile (r'''__version__ = ['"]([0-9.]+((post|dev)\d+)? )['"]''' )
26
26
27
27
init = read (os .path .join (root , 'src/sagemaker' , '__init__.py' ))
28
28
return version_re .search (init ).group (1 )
Original file line number Diff line number Diff line change 39
39
from sagemaker .session import s3_input # noqa: F401
40
40
from sagemaker .session import get_execution_role # noqa: F401
41
41
42
- __version__ = '1.16.1'
42
+ __version__ = '1.16.1.post1 '
You can’t perform that action at this time.
0 commit comments