diff -Nru python-os-traits-0.15.0/AUTHORS python-os-traits-0.16.0/AUTHORS --- python-os-traits-0.15.0/AUTHORS 2019-06-28 20:20:57.000000000 +0000 +++ python-os-traits-0.16.0/AUTHORS 2019-07-31 20:29:16.000000000 +0000 @@ -1,6 +1,7 @@ Adam Spiers Charles Short Chris Dent +Corey Bryant Dan Smith Doug Hellmann EdLeafe @@ -24,6 +25,7 @@ Tony Breeds Victor Morales Vu Cong Tuan +Wang Huaqiang Yingxin ZhijunWei caoyuan @@ -32,3 +34,4 @@ jacky06 jianghua wang qingszhao +ya.wang diff -Nru python-os-traits-0.15.0/ChangeLog python-os-traits-0.16.0/ChangeLog --- python-os-traits-0.15.0/ChangeLog 2019-06-28 20:20:57.000000000 +0000 +++ python-os-traits-0.16.0/ChangeLog 2019-07-31 20:29:16.000000000 +0000 @@ -1,6 +1,13 @@ CHANGES ======= +0.16.0 +------ + +* Add new traits to flag live migration features +* CPU: add a trait for AVX512-VNNI support +* Add Python 3 Train unit tests + 0.15.0 ------ diff -Nru python-os-traits-0.15.0/debian/changelog python-os-traits-0.16.0/debian/changelog --- python-os-traits-0.15.0/debian/changelog 2019-07-30 20:34:58.000000000 +0000 +++ python-os-traits-0.16.0/debian/changelog 2019-08-09 02:02:46.000000000 +0000 @@ -1,9 +1,15 @@ -python-os-traits (0.15.0-0ubuntu1~ubuntu19.10.1~ppa201907301634) eoan; urgency=medium +python-os-traits (0.16.0-0ubuntu1~ubuntu19.10.1~ppa201908082202) eoan; urgency=medium * New upstream release for OpenStack Train. * No-change backport to eoan - -- Corey Bryant Tue, 30 Jul 2019 16:34:58 -0400 + -- Corey Bryant Thu, 08 Aug 2019 22:02:46 -0400 + +python-os-traits (0.15.0-0ubuntu1) eoan; urgency=medium + + * New upstream release for OpenStack Train. + + -- Corey Bryant Tue, 30 Jul 2019 15:36:49 -0400 python-os-traits (0.14.0-0ubuntu1) eoan; urgency=medium diff -Nru python-os-traits-0.15.0/os_traits/compute/migrate.py python-os-traits-0.16.0/os_traits/compute/migrate.py --- python-os-traits-0.15.0/os_traits/compute/migrate.py 1970-01-01 00:00:00.000000000 +0000 +++ python-os-traits-0.16.0/os_traits/compute/migrate.py 2019-07-31 20:28:37.000000000 +0000 @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +TRAITS = [ + 'AUTO_CONVERGE', + 'POST_COPY', +] diff -Nru python-os-traits-0.15.0/os_traits/hw/cpu/x86/__init__.py python-os-traits-0.16.0/os_traits/hw/cpu/x86/__init__.py --- python-os-traits-0.15.0/os_traits/hw/cpu/x86/__init__.py 2019-06-28 20:20:11.000000000 +0000 +++ python-os-traits-0.16.0/os_traits/hw/cpu/x86/__init__.py 2019-07-31 20:28:33.000000000 +0000 @@ -40,6 +40,7 @@ 'AVX512VL', # vector length extensions 'AVX512BW', # byte + word 'AVX512DQ', # double word + quad word + 'AVX512VNNI', # vector neural network instructions # ref: https://en.wikipedia.org/wiki/Bit_Manipulation_Instruction_Sets 'ABM', 'BMI', diff -Nru python-os-traits-0.15.0/os_traits.egg-info/pbr.json python-os-traits-0.16.0/os_traits.egg-info/pbr.json --- python-os-traits-0.15.0/os_traits.egg-info/pbr.json 2019-06-28 20:20:57.000000000 +0000 +++ python-os-traits-0.16.0/os_traits.egg-info/pbr.json 2019-07-31 20:29:16.000000000 +0000 @@ -1 +1 @@ -{"git_version": "74f8a3f", "is_release": true} \ No newline at end of file +{"git_version": "5a477b8", "is_release": true} \ No newline at end of file diff -Nru python-os-traits-0.15.0/os_traits.egg-info/PKG-INFO python-os-traits-0.16.0/os_traits.egg-info/PKG-INFO --- python-os-traits-0.15.0/os_traits.egg-info/PKG-INFO 2019-06-28 20:20:57.000000000 +0000 +++ python-os-traits-0.16.0/os_traits.egg-info/PKG-INFO 2019-07-31 20:29:16.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: os-traits -Version: 0.15.0 +Version: 0.16.0 Summary: A library containing standardized trait strings Home-page: https://docs.openstack.org/os-traits/latest/ Author: OpenStack @@ -35,3 +35,4 @@ Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 diff -Nru python-os-traits-0.15.0/os_traits.egg-info/SOURCES.txt python-os-traits-0.16.0/os_traits.egg-info/SOURCES.txt --- python-os-traits-0.15.0/os_traits.egg-info/SOURCES.txt 2019-06-28 20:20:57.000000000 +0000 +++ python-os-traits-0.16.0/os_traits.egg-info/SOURCES.txt 2019-07-31 20:29:16.000000000 +0000 @@ -31,6 +31,7 @@ os_traits/compute/__init__.py os_traits/compute/graphics.py os_traits/compute/image.py +os_traits/compute/migrate.py os_traits/compute/net.py os_traits/compute/security.py os_traits/compute/status.py diff -Nru python-os-traits-0.15.0/PKG-INFO python-os-traits-0.16.0/PKG-INFO --- python-os-traits-0.15.0/PKG-INFO 2019-06-28 20:20:57.000000000 +0000 +++ python-os-traits-0.16.0/PKG-INFO 2019-07-31 20:29:16.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: os-traits -Version: 0.15.0 +Version: 0.16.0 Summary: A library containing standardized trait strings Home-page: https://docs.openstack.org/os-traits/latest/ Author: OpenStack @@ -35,3 +35,4 @@ Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 diff -Nru python-os-traits-0.15.0/setup.cfg python-os-traits-0.16.0/setup.cfg --- python-os-traits-0.15.0/setup.cfg 2019-06-28 20:20:57.000000000 +0000 +++ python-os-traits-0.16.0/setup.cfg 2019-07-31 20:29:16.000000000 +0000 @@ -17,6 +17,7 @@ Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 [files] packages = diff -Nru python-os-traits-0.15.0/tox.ini python-os-traits-0.16.0/tox.ini --- python-os-traits-0.15.0/tox.ini 2019-06-28 20:20:11.000000000 +0000 +++ python-os-traits-0.16.0/tox.ini 2019-07-31 20:28:33.000000000 +0000 @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py{27,36,37},pep8 +envlist = py27,py37,pep8 [testenv] install_command = pip install {opts} {packages} diff -Nru python-os-traits-0.15.0/.zuul.yaml python-os-traits-0.16.0/.zuul.yaml --- python-os-traits-0.15.0/.zuul.yaml 2019-06-28 20:20:11.000000000 +0000 +++ python-os-traits-0.16.0/.zuul.yaml 2019-07-31 20:28:33.000000000 +0000 @@ -3,6 +3,5 @@ - openstack-python-jobs - publish-openstack-docs-pti - check-requirements - - openstack-python36-jobs - - openstack-python37-jobs + - openstack-python3-train-jobs - release-notes-jobs-python3