- 24 Mar, 2022 1 commit
-
-
Thomas Goirand authored
-
- 14 Mar, 2022 2 commits
-
-
Thomas Goirand authored
-
Thomas Goirand authored
debtcollector 2.5.0 release meta:version: 2.5.0 meta:diff-start: - meta:series: independent meta:release-type: release meta:pypi: yes meta:first: no meta:release:Author: Hervé Beraud <hberaud@redhat.com> meta:release:Commit: Hervé Beraud <hberaud@redhat.com> meta:release:Change-Id: I1b16b37b7ee4c187c32072d54fb2bab22b5eda0a meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech> meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org> meta:release:Workflow+1: Thierry Carrez <thierry@openstack.org>
-
- 15 Feb, 2022 3 commits
-
-
Thomas Goirand authored
-
Thomas Goirand authored
* Removed six from (build-)depends.
-
Thomas Goirand authored
debtcollector 2.4.0 release meta:version: 2.4.0 meta:diff-start: - meta:series: independent meta:release-type: release meta:pypi: yes meta:first: no meta:release:Author: Stephen Finucane <sfinucan@redhat.com> meta:release:Commit: Stephen Finucane <stephenfin@redhat.com> meta:release:Change-Id: I252cb38bf17920ba5d9c06d305754b4e6287c8c7 meta:release:Code-Review+2: Hervé Beraud <herveberaud.pro@gmail.com> meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech> meta:release:Workflow+1: Elod Illes <elod.illes@est.tech>
-
- 11 Feb, 2022 2 commits
-
-
Stephen Finucane authored
These are no longer necessary in a Python 3-only world. Signed-off-by:Stephen Finucane <stephenfin@redhat.com> Change-Id: Ia3eda6d451b673f3eafba1aa3ecd2e51b7038f1f
-
Zuul authored
-
- 12 Nov, 2021 1 commit
-
-
Stephen Finucane authored
We haven't used this at runtime since we switched to using importlib.metadata in change Ib10180732042bda254b058b94c9ff41f5c31c3cb, therefore there's no longer any need to include it in the 'requirements.txt' file. Remove it. Signed-off-by:Stephen Finucane <stephenfin@redhat.com> Change-Id: I93152b5826620a867125aeb5edc54b5f5489fbab
-
- 04 Nov, 2021 2 commits
-
-
Stephen Finucane authored
Everything is unicode in Python 3. No need for these anymore. Signed-off-by:Stephen Finucane <stephenfin@redhat.com> Change-Id: I722095c41c8e014b38bfbb16aaecae0023fcf3a8
-
Stephen Finucane authored
debtcollector is one of the few remaining OpenStack libraries still using six. Like the other libraries that have since removed it, debtcollector no longer actually needs this since it only supports Python 3. Remove the library. Signed-off-by:Stephen Finucane <stephenfin@redhat.com> Change-Id: Ia16572985a46afe39b53a199ebabb695cd05ae2d
-
- 29 Sep, 2021 1 commit
-
-
Thomas Goirand authored
-
- 07 Sep, 2021 5 commits
-
-
Thomas Goirand authored
-
Thomas Goirand authored
-
Thomas Goirand authored
The documentation is writting the date in its copyright. This is considered bad practice, because this kills reproducibility. If you don't know about reproducible build, please read on: https: //reproducible-builds.org/ Change-Id: I6427c83af06ac58da32898f00d3f99dc6ba1ae93
-
Thomas Goirand authored
-
Thomas Goirand authored
debtcollector 2.3.0 release meta:version: 2.3.0 meta:diff-start: - meta:series: independent meta:release-type: release meta:pypi: yes meta:first: yes meta:release:Author: Hervé Beraud <hberaud@redhat.com> meta:release:Commit: Hervé Beraud <hberaud@redhat.com> meta:release:Change-Id: Ic67b969426a65c7ada241e98b6a8135d18ff23cd meta:release:Code-Review+2: Sean McGinnis <sean.mcginnis@gmail.com> meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org> meta:release:Workflow+1: Thierry Carrez <thierry@openstack.org>
-
- 15 Jul, 2021 1 commit
-
-
Takashi Kajinami authored
inspect.getargspec was deprecated since Python 3.0 and inspect.getfullargspec is its replacement with correct handling of function annotations and keyword-only parameters[1]. [1] https://docs.python.org/3/library/inspect.html#inspect.getargspec Change-Id: Ifc98b578c4cb6f917e1fc62177fd09ff4d25b6d4
-
- 18 May, 2021 1 commit
-
-
liyou01 authored
Change-Id: I65d63c955dec439fc599754624d3dc9b96f3f6c3
-
- 14 May, 2021 1 commit
-
-
yangyawei authored
Setuptools v54.1.0 introduces a warning that the use of dash-separated options in 'setup.cfg' will not be supported in a future version [1]. Get ahead of the issue by replacing the dashes with underscores. Without this, we see 'UserWarning' messages like the following on new enough versions of setuptools: 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: Ib8c972f4b673ceb8a92648fb921e122524807e6d
-
- 26 Apr, 2021 1 commit
-
-
Dmitry Tantsur authored
Pbr is a very heavy package to depend on. It requires git-core, which is 16 MiB on my Fedora. We only use it to detect the version, which can be done without pbr using a much lighter importlib_metadata. Copied from https://review.opendev.org/c/openstack/osprofiler/+/739379 Change-Id: Ib10180732042bda254b058b94c9ff41f5c31c3cb
-
- 21 Apr, 2021 1 commit
-
-
Zuul authored
-
- 23 Mar, 2021 1 commit
-
-
Daniel Bengtsson authored
The goal here is to avoid conflicts between flake8 and hacking version each 2 days. Inspired from nova's approach[1]. The flake8 version to install will be determined by hacking and requirements[2] will stay aligned instead of relying on different versions. [1] https://opendev.org/openstack/nova/src/branch/master/.pre-commit-config.yaml#L26-L35 [2] https://opendev.org/openstack/hacking/src/branch/master/requirements.txt#L1 Change-Id: I62e23fa6f6fda4deb7ab98ac9e2e41d8adf7576b
-
- 20 Feb, 2021 1 commit
-
-
wu.shiming authored
These were missed in change: I36fb12c92823d27e42975d4dc683ad8d99191a77 Change-Id: Ic757469ae8c9af7b0f83f94e2d902f33385f60ef
-
- 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: I36fb12c92823d27e42975d4dc683ad8d99191a77
-
- 20 Nov, 2020 1 commit
-
-
Thomas Goirand authored
-
- 09 Nov, 2020 1 commit
-
-
Zuul authored
-
- 04 Nov, 2020 1 commit
-
-
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: Ib9ef556d8f63fdba1901717360af4cbd86faa0e7
-
- 03 Nov, 2020 1 commit
-
-
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: Ica69c0f76229aad8e9feadd76b2fd69a0df116c8
-
- 14 Oct, 2020 2 commits
-
-
Thomas Goirand authored
-
Thomas Goirand authored
-
- 22 Sep, 2020 3 commits
-
-
Zuul authored
-
Hervé Beraud authored
Change-Id: I6ed1f39c04cde4011d5c65b8c40332cc253695ba
-
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: I382aa79f7357a86af11783f59e0f1680d5bed8d0 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: I21718260133b7b115d61b42e782581444d182464
-
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: Idf47fcc25d2b06fb2e5c2317dcaa1a9a3b050b22 Sem-Ver: feature
-
- 07 Sep, 2020 2 commits
-
-
Thomas Goirand authored
-
Thomas Goirand authored
debtcollector 2.2.0 release meta:version: 2.2.0 meta:diff-start: - meta:series: victoria meta:release-type: release meta:pypi: yes meta:first: no meta:release:Author: Sean McGinnis <sean.mcginnis@gmail.com> meta:release:Commit: Sean McGinnis <sean.mcginnis@gmail.com> meta:release:Change-Id: Ib9a30a954f01279df3bd4522d4324cbf7e361839 meta:release:Code-Review+1: Ben Nemec <openstack@nemebean.com> meta:release:Code-Review+2: Sean McGinnis <sean.mcginnis@gmail.com> meta:release:Workflow+1: Sean McGinnis <sean.mcginnis@gmail.com>
-
- 10 Jun, 2020 1 commit
-
-
Sean McGinnis authored
This updates lower constraints to versions that will work with py38 so that when we move to running on focal nodes, which has py38 as its default py3 runtime, the lower-constraints job will continue to pass. It also cleans out some secondary requirements that are no longer needed due to our direct dependencies being updated. Linters are removed that are kept in the global requirements blacklist as those are not version tracked and are not relevant for our lower-constraints unit test runs. Change-Id: I78945d43111fe7a2a38c17432b9dcd66a6116186 Signed-off-by:Sean McGinnis <sean.mcginnis@gmail.com>
-