diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-cogment.spec | 45 | ||||
| -rw-r--r-- | sources | 2 |
3 files changed, 35 insertions, 13 deletions
@@ -1 +1,2 @@ /cogment-2.8.0.tar.gz +/cogment-2.8.1.tar.gz diff --git a/python-cogment.spec b/python-cogment.spec index 1311f87..60cce0a 100644 --- a/python-cogment.spec +++ b/python-cogment.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-cogment -Version: 2.8.0 +Version: 2.8.1 Release: 1 Summary: Cogment python SDK License: Apache Software License URL: https://cogment.ai -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/b9/53/c3181c668e83baff92053de071b3aba8ef3f671a850b834f523c7c801a23/cogment-2.8.0.tar.gz +Source0: https://mirrors.aliyun.com/pypi/web/packages/8d/0e/b890fad1860f3d38d75a5287d9cfefb59e189220860f22f901ccd1888b29/cogment-2.8.1.tar.gz BuildArch: noarch Requires: python3-grpcio @@ -140,6 +140,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +## v2.8.1 - 2023-06-06 + +## Fixed + +- Use the most recent directory entry when there are duplicates +- Self IP address discovery functionality is now working on macOS + ## v2.8.0 - 2023-04-21 ### Added @@ -195,8 +202,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Simplified interface for Model Registry (context.get_model_registry_v2) ## v2.4.1 - 2022-12-02 -- Support and dependency check for python 3.10 +- Support and dependency check for python 3.10 ## v2.4.0 - 2022-11-18 @@ -645,6 +652,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +## v2.8.1 - 2023-06-06 + +## Fixed + +- Use the most recent directory entry when there are duplicates +- Self IP address discovery functionality is now working on macOS + ## v2.8.0 - 2023-04-21 ### Added @@ -700,8 +714,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Simplified interface for Model Registry (context.get_model_registry_v2) ## v2.4.1 - 2022-12-02 -- Support and dependency check for python 3.10 +- Support and dependency check for python 3.10 ## v2.4.0 - 2022-11-18 @@ -1147,6 +1161,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +## v2.8.1 - 2023-06-06 + +## Fixed + +- Use the most recent directory entry when there are duplicates +- Self IP address discovery functionality is now working on macOS + ## v2.8.0 - 2023-04-21 ### Added @@ -1202,8 +1223,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Simplified interface for Model Registry (context.get_model_registry_v2) ## v2.4.1 - 2022-12-02 -- Support and dependency check for python 3.10 +- Support and dependency check for python 3.10 ## v2.4.0 - 2022-11-18 @@ -1523,7 +1544,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. %prep -%autosetup -n cogment-2.8.0 +%autosetup -n cogment-2.8.1 %build %py3_build @@ -1537,20 +1558,20 @@ if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} if [ -d usr/lib ]; then - find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst + find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/lib64 ]; then - find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst + find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/bin ]; then - find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/sbin ]; then - find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi touch doclist.lst if [ -d usr/share/man ]; then - find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . @@ -1563,5 +1584,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Tue May 30 2023 Python_Bot <Python_Bot@openeuler.org> - 2.8.0-1 +* Thu Jun 08 2023 Python_Bot <Python_Bot@openeuler.org> - 2.8.1-1 - Package Spec generated @@ -1 +1 @@ -a21728d0e202e419e887c140d4636fc9 cogment-2.8.0.tar.gz +2fd88d9f32287ae91c7c033e7b6e3a3c cogment-2.8.1.tar.gz |
