- 21 Jun, 2022 1 commit
-
-
Zuul authored
-
- 10 Jun, 2022 1 commit
-
-
Hemanth Nakkina authored
This combines two commits in one * Change aggregation method to mean Commit 6061286c3133a4b85c4a72160960ecf6a82d02f8 handles ignoring gnocchi api error when metric is not created. However there are functional test failures when the aggregation method is set to last for alarm type gnocchi_aggregation_by_resources_threshold, This fix changes the aggregration method to mean for any create/update of alarm type gnocchi_aggregation_by_resources_threshold. * Update python testing as per zed cycle testing runtime In Zed cycle, we have dropped the python 3.6/3.7[1] testing and its support. Add release notes and update the python classifier for the same. [1] https://governance.openstack.org/tc/reference/runtimes/zed.html Co-Authored-By:
Ghanshyam Mann <gmann@ghanshyammann.com> Depends-On: https://review.opendev.org/c/openstack/aodh/+/843764 Change-Id: Ia11f25fa8c36c6051a44994f2545e2b64a665593 Closes-Bug: #1974682
-
- 09 May, 2022 1 commit
-
-
wangzihao authored
Remove six.moves Replace the following items with Python 3 style code. - six.moves.urllib - six.iteritems - six.PY2 - six.StringIO Change-Id: If3fe0e534b092d436e46fca944c2955911e38197
-
- 03 Mar, 2022 1 commit
-
-
OpenStack Release Bot authored
Add file to the reno documentation build to show release notes for stable/yoga. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/yoga. Sem-Ver: feature Change-Id: I81088b3f4c6304aa12fa3a58cadb9d44b6d783a2
-
- 08 Feb, 2022 2 commits
-
-
Zuul authored
-
Takashi Kajinami authored
Python 2 support was removed during Ussuri cycle. This change adds the classifier to clearly state that only Python 3 is supported. Change-Id: I1f2788b7ffe8a28fdfbc5df0947f62c48449e8ad
-
- 07 Feb, 2022 3 commits
-
-
Zuul authored
-
Zuul authored
-
Takashi Kajinami authored
Since setuptools v54.1.0[1], the parmeters with dash have been deprecated in favor of the new parameters with underscore. This change updates the parameters accordingly to avoid the warnings like the example below. UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead [1] https://github.com/pypa/setuptools/commit/a2e9ae4cb Change-Id: I5aa097573e323ec0c34cb9d621e85d5259195f21
-
- 06 Feb, 2022 2 commits
-
-
Takashi Kajinami authored
This is a patch to ensure unit testing is in place for all the of the tested runtimes for yoga. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html This patch is manually created, because the previous patch was not merged before Xena release and release bot didn't create the automated patch at that time. Change-Id: I902f342800d6ea7dda3eff2a10f7c9dd54fa6151
-
Zuul authored
-
- 26 Nov, 2021 1 commit
-
-
rabi authored
Replaces removed pyparsing.operatorPrecedence(). Also removes broken ceilometer threshold tests as they don't seem to be supported by aodh anymore. Change-Id: Ifa82042fc15e6c167ed2e3a1923baa6ee61c6237
-
- 17 Sep, 2021 1 commit
-
-
OpenStack Release Bot authored
Add file to the reno documentation build to show release notes for stable/xena. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/xena. Sem-Ver: feature Change-Id: I26a2474826a83750f3b5546c0688cb282d780324
-
- 12 Mar, 2021 2 commits
-
-
OpenStack Release Bot authored
This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for xena. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I55c5a8568ccd93e504120365d4d2f3107cf0aa06
-
OpenStack Release Bot authored
Add file to the reno documentation build to show release notes for stable/wallaby. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/wallaby. Sem-Ver: feature Change-Id: I04a5bf29398dc6661d5efa16a618aa629b9067d2
-
- 10 Sep, 2020 2 commits
-
-
OpenStack Release Bot authored
This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for wallaby. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: Idafb008621da6fc157ed46261975dd31668882bb
-
OpenStack Release Bot authored
Add file to the reno documentation build to show release notes for stable/victoria. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/victoria. Change-Id: I31ec5389c4ef98a22a3cb0a63c3c114f40ff8d69 Sem-Ver: feature
-
- 24 Aug, 2020 1 commit
-
-
Dan Radez authored
The response is returned as text/plain in case of exception. Pecan 1.4 uses accept header to decide the response content type. This also affected gnocciclient and has been fixed there. https://github.com/gnocchixyz/python-gnocchiclient/pull/110 Change-Id: Ia46259e960493c92a6701a165518ef87b03c5c2d
-
- 15 Jun, 2020 1 commit
-
-
wu.chunyang authored
These translation sections are not needed anymore, Babel can generate translation files without them. Remove babel.cfg as well, this is the default role and not needed anymore. Change-Id: Ib240beb075ef8db5ba659dae8487b85d59efb355
-
- 02 Jun, 2020 1 commit
-
-
Hervé Beraud authored
The __future__ module [1] was used in this context to ensure compatibility between python 2 and python 3. We previously dropped the support of python 2.7 [2] and now we only support python 3 so we don't need to continue to use this module and the imports listed below. Imports commonly used and their related PEPs: - `division` is related to PEP 238 [3] - `print_function` is related to PEP 3105 [4] - `unicode_literals` is related to PEP 3112 [5] - `with_statement` is related to PEP 343 [6] - `absolute_import` is related to PEP 328 [7] [1] https://docs.python.org/3/library/__future__.html [2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html [3] https://www.python.org/dev/peps/pep-0238 [4] https://www.python.org/dev/peps/pep-3105 [5] https://www.python.org/dev/peps/pep-3112 [6] https://www.python.org/dev/peps/pep-0343 [7] https://www.python.org/dev/peps/pep-0328 Change-Id: I0dada323a2a33afef8f5adcbbdda48919defb432
-
- 22 May, 2020 1 commit
-
-
Andreas Jaeger authored
Switch to openstackdocstheme 2.2.1 and reno 3.1.0 versions. Using these versions will allow especially: * Linking from HTML to PDF document * Allow parallel building of documents * Fix some rendering problems Update Sphinx version as well. openstackdocstheme renames some variables, so follow the renames before the next release removes them. A couple of variables are also not needed anymore, remove them. Change pygments_style to 'native' since old theme version always used 'native' and the theme now respects the setting and using 'sphinx' can lead to some strange rendering. See also http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html Change-Id: I3b5249bee4f8452cc3a717dc93d2eca70002ce59
-
- 26 Apr, 2020 1 commit
-
-
Zuul authored
-
- 24 Apr, 2020 2 commits
-
-
Sean McGinnis authored
Python 3.8 is now our highest level supported python runtime. This updates the default tox target environments to swap out py37 for py38 to make sure local development testing is covering this version. This does not impact zuul jobs in any way, nor prevent local tests against py37. It just changes the default if none is explicitly provided. Change-Id: I46268c46a527e9189a380deb4dec9493e7e3fb26 Signed-off-by:Sean McGinnis <sean.mcginnis@gmail.com>
-
Sean McGinnis authored
Now that we are running the Victoria tests that include a voting py38, we can now add the Python 3.8 metadata to the package information to reflect that support. Change-Id: Ia132a9dc4f4ff8af7ca5186343bbd43cac989d8f Signed-off-by:Sean McGinnis <sean.mcginnis@gmail.com>
-
- 20 Apr, 2020 1 commit
-
-
Sean McGinnis authored
Now that we no longer support py27, we can use the standard library unittest.mock module instead of the third party mock lib. Change-Id: I7268264d3e2c98474604ec5f46298d36b7d32f18 Signed-off-by:
Sean McGinnis <sean.mcginnis@gmail.com> Co-Authored-By:
zhurong <aaronzhu1121@gmail.com>
-
- 11 Apr, 2020 2 commits
-
-
OpenStack Release Bot authored
This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for victoria. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I09f69cc060d63ad626159b407cff2b4603e45784
-
OpenStack Release Bot authored
Add file to the reno documentation build to show release notes for stable/ussuri. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/ussuri. Change-Id: I5cc32223f76eef2c2e69271eb618044c5bf92f5c Sem-Ver: feature
-
- 04 Apr, 2020 1 commit
-
-
Andreas Jaeger authored
Make a few cleanups: - Remove python 2.7 stanza from setup.py - Add requires on python >= 3.6 to setup.cfg so that pypi and pip know about the requirement - Remove section from setup.cfg: Wheel is not needed for python 3 only repo - Update requirements, no need for python_version anymore Change-Id: I8825104cffa158cb0423e648067fae6ad0a0711d
-
- 03 Apr, 2020 1 commit
-
-
Andreas Jaeger authored
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Fix problems found. Change-Id: I632a0d78f165b5cf1ccd00bad34fbfeabde2d8fe
-
- 04 Feb, 2020 1 commit
-
-
Lingxian Kong authored
Change-Id: I6f3f5a8df8fcfac4e7b86f3030b86db1af9d3ae2
-
- 20 Dec, 2019 1 commit
-
-
caoyuan authored
Sphinx 1.8 introduced [1] the '--keep-going' argument which, as its name suggests, keeps the build running when it encounters non-fatal errors. This is exceptionally useful in avoiding a continuous edit-build loop when undertaking large doc reworks where multiple errors may be introduced. [1] https://github.com/sphinx-doc/sphinx/commit/e3483e9b045 Change-Id: Id7784670604631d1fb702d2a33cfe91aa4d10987
-
- 14 Dec, 2019 1 commit
-
-
Ghanshyam Mann authored
OpenStack is dropping the py2.7 support in ussuri cycle. python-aodhclient is ready with python 3 and ok to drop the python 2.7 support. Complete discussion & schedule can be found in - http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html - https://etherpad.openstack.org/p/drop-python2-support Ussuri Communtiy-wide goal - https://review.opendev.org/#/c/691178/ Change-Id: I734a2b525df0b3fc8ddf16a62025fab5f66a01aa
-
- 26 Nov, 2019 2 commits
-
-
Zuul authored
-
Lingxian Kong authored
Add threshold type alarm back. Gnocchi is not actively maintained currently but there are still users running Ceilometer in production and relying on Ceilometer for auditing and billing. Change-Id: I94ea998affbdd9f5535431f3ba713e2d4662b253
-
- 22 Oct, 2019 1 commit
-
-
kangyufei authored
Change-Id: Id72d17b2576e71178f470b75aea967a70b972758
-
- 20 Oct, 2019 1 commit
-
-
Simon Merrick authored
Add support to CLI for creating alarms of type loadbalancer_member_health[1] [1]: https://review.opendev.org/#/c/654221/ Change-Id: Ib67c20f8f42b7cd85bbab2c4cc487ed729a44433
-
- 20 Sep, 2019 1 commit
-
-
OpenStack Release Bot authored
Add file to the reno documentation build to show release notes for stable/train. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/train. Change-Id: I63b34af4647f9c4e8a997231d3b596ba98467eac Sem-Ver: feature
-
- 01 Aug, 2019 1 commit
-
-
pengyuesheng authored
Some options are now automatically configured by the version 1.20: - project - html_last_updated_fmt - latex_engine - latex_elements - version - release. Change-Id: Ifea7c76efeb96af3b8ef4a21529e5b60fd1f0348
-
- 08 Jul, 2019 1 commit
-
-
pengyuesheng authored
See https://github.com/sphinx-doc/sphinx/issues/6440 for upstream details Depend-On: https://review.opendev.org/#/c/663060/ Change-Id: Ib6a0bbdca4e8d0bb80a19b3372360f3c2731aac5
-
- 05 Jul, 2019 1 commit
-
-
Corey Bryant authored
This is a mechanically generated patch to ensure unit testing is in place for all of the Tested Runtimes for Train. See the Train python3-updates goal document for details: https://governance.openstack.org/tc/goals/train/python3-updates.html Change-Id: I2404270440ef1bb576875d8261c9fe6f8c89a72d Story: #2005924 Task: #34251
-