- 18 Mar, 2021 2 commits
-
-
OpenStack Release Bot authored
Update the URL to the upper-constraints file to point to the redirect rule on releases.openstack.org so that anyone working on this branch will switch to the correct upper-constraints list automatically when the requirements repository branches. Until the requirements repository has as stable/wallaby branch, tests will continue to use the upper-constraints list on master. Change-Id: I2076040ea3b7f524f884d4547b927f01b44d0502
-
OpenStack Release Bot authored
Change-Id: I472a5a0c1948c41535dca3cd14701c1fd37eaa56
-
- 11 Feb, 2021 1 commit
-
-
Stephen Finucane authored
This is now maintained as a Jazzband project [1]. [1] https://github.com/jazzband/prettytable Change-Id: I13d782b4b1be7556c3a7cde344a38748d31a249c Signed-off-by:
Stephen Finucane <stephenfin@redhat.com>
-
- 21 Jan, 2021 1 commit
-
-
Zuul authored
-
- 14 Jan, 2021 1 commit
-
-
Zuul authored
-
- 18 Dec, 2020 1 commit
-
-
Hervé Beraud authored
We facing errors related to the new pip resolver, this topic was discussed on the ML and QA team proposed to to test lower-constraints [1]. I propose to drop this test because the complexity and recurring pain needed to maintain that now exceeds the benefits provided by this mechanismes. [1] http://lists.openstack.org/pipermail/openstack-discuss/2020-December/019390.html Change-Id: I2706e8af350d07e51169f8bc13c7404d4696b2a2
-
- 12 Dec, 2020 1 commit
-
-
Riccardo Pittau authored
We run on Python 3 only, time to remove six dependency Also fix l-c for new pip-resolver and move pep8 deps in tox.ini to avoid conflicts. And since we're here, update pre-commit config to support correct hacking version. Change-Id: Ibbe733c4be37d1a9dd9149d491591ef2e50dad6a
-
- 04 Nov, 2020 2 commits
-
-
Hervé Beraud authored
UPPER_CONSTRAINTS_FILE is old name and deprecated This allows to use upper-constraints file as more readable way instead of UPPER_CONSTRAINTS_FILE=<lower-constraints file>. [1] https://review.opendev.org/#/c/722814/ [2] https://zuul-ci.org/docs/zuul-jobs/python-roles.html#rolevar-tox.tox_constraints_file Change-Id: I0689bf1a5e7f44fcdc4519932df291db679e0869
-
Hervé Beraud authored
Moving on py3 as the default runtime for tox to avoid to update this at each new cycle. Wallaby support officially the following runtimes [1]: - Python 3.6 - Python 3.8 During Victoria Python 3.7 was used as the default runtime [2] however this version isn't longer officially supported. [1] https://governance.openstack.org/tc/reference/runtimes/wallaby.html#python-runtimes-for-wallaby [2] https://governance.openstack.org/tc/reference/runtimes/victoria.html#python-runtimes-for-victoria Change-Id: Iaaa6d1b7b0a957da75b0819c2d10b639463f9d23
-
- 05 Oct, 2020 1 commit
-
-
Zuul authored
-
- 15 Sep, 2020 1 commit
-
-
Hervé Beraud authored
Introduced changes: - pre-commit config and rules - Add pre-commit to pep8 gate, Flake8 is covered in the pre-commit hooks. - Applying fixes for pre-commit compliance in all code. Also commit hash will be used instead of version tags in pre-commit to prevend arbitrary code from running in developer's machines. pre-commit will be used to: - trailing whitespace; - Replaces or checks mixed line ending (mixed-line-ending); - Forbid files which have a UTF-8 byte-order marker (check-byte-order-marker); - Checks that non-binary executables have a proper shebang (check-executables-have-shebangs); - Check for files that contain merge conflict strings (check-merge-conflict); - Check for debugger imports and py37+ breakpoint() calls in python source (debug-statements); - Attempts to load all yaml files to verify syntax (check-yaml); - Run flake8 checks (flake8) (local) For further details about tests please refer to: https://github.com/pre-commit/pre-commit-hooks Change-Id: I1e4625d34ed08218dd7069402a1eff1418f4ec35 Signed-off-by:
Moisés Guimarães de Medeiros <moguimar@redhat.com>
-
- 11 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: Iddd80d10bad24bf52c72401fb49fddcf8335060b
-
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: I9f7f44ad0787ae3f2519287bf73cd1395a8474a6 Sem-Ver: feature
-
- 08 Jun, 2020 2 commits
-
-
Sean McGinnis authored
This updates the lower constraints packages with only things that are currently pulled in with the latest necessary requirements. It also removes linters that are part of the blacklist in global requirements as those are not needed for tracking. Change-Id: Iffa3a1caaa14b7367991e24eb2cfaf9332736701 Signed-off-by:Sean McGinnis <sean.mcginnis@gmail.com>
-
Hervé Beraud authored
The mock third party library was needed for mock support in py2 runtimes. Since we now only support py36 and later, we don't need it in lower-constraints. These changes will help us to drop `mock` from openstack/requirements Change-Id: Ide97d869c5e56e56e2a522f198f0973504972697
-
- 03 Jun, 2020 1 commit
-
-
Zuul authored
-
- 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: Ib32cd47131b154509357b228b2e97548cf5ba4e4
-
- 26 May, 2020 2 commits
-
-
Andreas Jaeger authored
Remove unused babel.cfg file. Remove python 2.7 support from setup.py. Change-Id: I6d12374ca3f68c313e3bcca2587393c000214181
-
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. Disable openstackdocs_auto_name to use 'project' variable as name. 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. Remove docs requirements from lower-constraints, they are not needed during install or test but only for docs building. 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. See also http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html Change-Id: I3adc259f89f9093fbe9cce1353f5d6f0828271b9
-
- 27 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: I803395e1448dae744707853387af5b01ec037b62 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: I915e0220a7f5354724445450d1828823c8461ce2 Signed-off-by:Sean McGinnis <sean.mcginnis@gmail.com>
-
- 14 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: I25af81bb32d0a98a00621528afa32c69bd67b933
-
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: Ib992f2286bf1d729f2152f2a04c20bcbc17ec538 Sem-Ver: feature
-
- 30 Mar, 2020 1 commit
-
-
Andreas Jaeger authored
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Change-Id: I13b9eeb19236eaf02a5b166026c285ff78d754bb
-
- 04 Feb, 2020 2 commits
-
-
Hervé Beraud authored
Also prefer to lowercase `ignore_basepython_conflict` value to uniformize with other oslo projects. Change-Id: Ia5b47f1dd3b4aee25b1182620f61f05b0f1fb56f
-
Hervé Beraud authored
Change-Id: I42efda8d3fb5d300068e2fb18502fc266878e238
-
- 03 Feb, 2020 1 commit
-
-
Andreas Jaeger authored
OpenStack is dropping the py2.7 support in ussuri cycle. 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 Cleanup some old cuft from setup.cfg. Fix sphinx-build invocation to publish correctly. Ussuri Communtiy-wide goal: https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Change-Id: I61b0dcd730be1889815e47a0c0c354d8f7759571
-
- 18 Dec, 2019 2 commits
-
-
Stephen Finucane authored
Change-Id: I6d52fdd59be2a3be50a803b2b19621455765bfaf Signed-off-by:Stephen Finucane <stephenfin@redhat.com>
-
Hervé Beraud authored
For the sake of homogeneity between oslo project scope, prefer to use doc/requirements.txt Change-Id: I10acf283752d18cb98c8ad19b8af4758bed94679
-
- 23 Oct, 2019 1 commit
-
-
kangyufei authored
Change-Id: Ia34b54872bded2edb015b2497a37f786e73e86bb
-
- 09 Oct, 2019 1 commit
-
-
pengyuesheng authored
See https://github.com/sphinx-doc/sphinx/issues/6440 for upstream details Change-Id: I65f1bdda8e0dc87fe431e84642606a5560a093d2
-
- 29 Sep, 2019 1 commit
-
-
pengyuesheng authored
For more detail, see http://lists.openstack.org/pipermail/openstack-discuss/2019-May/006478.html Change-Id: Id183892a751ad1fee519388ec60a47df73cd6f66
-
- 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: Iba1fb8ee8dc73110ec3bc2f8e0fe10bf03e9a5e2 Sem-Ver: feature
-
- 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: I3cb88c079088916164d82a0f5b253c22528c0543 Story: #2005924 Task: #34234
-
- 03 Jul, 2019 1 commit
-
-
Zuul authored
-
- 26 Jun, 2019 1 commit
-
-
Elod Illes authored
As it was announced [1] global bindep-fallback.txt was removed and now projects need to have a local bindep.txt to be able to install binary dependencies for testing. In documentation zuul job graphviz package ('dot' command) is needed. Without that the job fails with: dot command 'dot' cannot be run (needed for graphviz output), check the graphviz_dot setting [1] http://lists.openstack.org/pipermail/openstack-discuss/2019-June/007272.html Change-Id: Ib9a720379ca997f848212eeca68ed9f32e4ed349
-
- 18 Jun, 2019 1 commit
-
-
jacky06 authored
1. Sync sphinx dependency with global requirements. It caps python 2 since sphinx 2.0 no longer supports Python 2.7. 2. Remove unncessary "==" Change-Id: Ied4095b176b20795f6a8d4d7a84d01d958d76896
-
- 23 Apr, 2019 1 commit
-
-
Le Hou authored
Change-Id: Ie9e013284751e549921ea6652a50368050ae2b2d
-
- 19 Apr, 2019 1 commit
-
-
OpenDev Sysadmins authored
This commit was bulk generated and pushed by the OpenDev sysadmins as a part of the Git hosting and code review systems migration detailed in these mailing list posts: http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html Attempts have been made to correct repository namespaces and hostnames based on simple pattern matching, but it's possible some were updated incorrectly or missed entirely. Please reach out to us via the contact information listed at https://opendev.org/ with any questions you may have.
-