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 22CHANGELOG
33=========
44
5- 1.16.2.dev
6- ==========
5+ 1.16.1.post1
6+ ============
77
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
910
10111.16.1
1112======
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def __getattr__(cls, name):
3232 'numpy' , 'scipy' , 'scipy.sparse' ]
3333sys .modules .update ((mod_name , Mock ()) for mod_name in MOCK_MODULES )
3434
35- version = '1.16.1'
35+ version = '1.16.1.post1 '
3636project = u'sagemaker'
3737
3838# Add any Sphinx extension module names here, as strings. They can be extensions
Original file line number Diff line number Diff line change 2222
2323def get_version ():
2424 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+)? )['"]''' )
2626
2727 init = read (os .path .join (root , 'src/sagemaker' , '__init__.py' ))
2828 return version_re .search (init ).group (1 )
Original file line number Diff line number Diff line change 3939from sagemaker .session import s3_input # noqa: F401
4040from sagemaker .session import get_execution_role # noqa: F401
4141
42- __version__ = '1.16.1'
42+ __version__ = '1.16.1.post1 '
You can’t perform that action at this time.
0 commit comments