1. 29 Sep, 2021 1 commit
  2. 23 Aug, 2021 3 commits
    • Thomas Goirand's avatar
      Removed python3-six from (build-)depends. · efeb2062
      Thomas Goirand authored
      efeb2062
    • Thomas Goirand's avatar
      Now packaging 6.3.0 · 2d41507f
      Thomas Goirand authored
      2d41507f
    • Thomas Goirand's avatar
      Merge tag '6.3.0' into debian/xena · 83992909
      Thomas Goirand authored
      oslo.rootwrap 6.3.0 release
      
      meta:version: 6.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: Ie08cda2ed6285c9ce506432cb516161a85b49076
      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>
      83992909
  3. 05 May, 2021 1 commit
    • YuehuiLei's avatar
      setup.cfg: Replace dashes with underscores · 25fcff99
      YuehuiLei 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: I8fc4f3b027aaacaf023e54fe0b138bdddaef0c3f
      25fcff99
  4. 16 Apr, 2021 1 commit
  5. 23 Mar, 2021 1 commit
  6. 19 Feb, 2021 1 commit
  7. 22 Jan, 2021 1 commit
  8. 14 Jan, 2021 1 commit
  9. 18 Dec, 2020 1 commit
  10. 04 Nov, 2020 2 commits
  11. 16 Oct, 2020 3 commits
  12. 09 Oct, 2020 1 commit
    • wangzihao's avatar
      Remove six · 0e62293a
      wangzihao authored
      Replace the following items with Python 3 style code.
      
      - six.moves
      - six.StringIO
      
      Change-Id: Ie06dc3b6cc5a3d88defa4fdfd071ed2c9dcfb1d0
      0e62293a
  13. 30 Sep, 2020 1 commit
    • wangzihao's avatar
      Remove six.PY3 · 81352d08
      wangzihao authored
      The Python 2.7 Support has been dropped since Ussuri.
      So remove hacking rules for compatibility between python 2 and 3.
      
      Change-Id: Idd6a1efd1857a70fc7d960b365bfc58d6cbe00d3
      81352d08
  14. 22 Sep, 2020 1 commit
  15. 14 Sep, 2020 2 commits
  16. 13 Sep, 2020 2 commits
    • Thomas Goirand's avatar
      Now packaging 6.2.0 · 507e8fa2
      Thomas Goirand authored
      507e8fa2
    • Thomas Goirand's avatar
      Merge tag '6.2.0' into debian/victoria · 584c27f8
      Thomas Goirand authored
      oslo.rootwrap 6.2.0 release
      
      meta:version: 6.2.0
      meta:diff-start: -
      meta:series: victoria
      meta:release-type: release
      meta:pypi: yes
      meta:first: no
      meta:release:Author: Ben Nemec <bnemec@redhat.com>
      meta:release:Commit: Ben Nemec <bnemec@redhat.com>
      meta:release:Change-Id: I3ae7c0913864b949dfb01fd31e1c7567fc4b7fd7
      meta:release:Code-Review+2: Hervé Beraud <hberaud@redhat.com>
      meta:release:Code-Review+2: Sean McGinnis <sean.mcginnis@gmail.com>
      meta:release:Workflow+1: Sean McGinnis <sean.mcginnis@gmail.com>
      584c27f8
  17. 11 Sep, 2020 2 commits
  18. 09 Sep, 2020 2 commits
    • Thomas Goirand's avatar
      Now packaging 6.1.0 · 50449aac
      Thomas Goirand authored
      50449aac
    • Thomas Goirand's avatar
      Merge tag '6.1.0' into debian/victoria · dd850baf
      Thomas Goirand authored
      oslo.rootwrap 6.1.0 release
      
      meta:version: 6.1.0
      meta:diff-start: -
      meta:series: victoria
      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: Id7d99b76d4f6a95bb879c317481478f9bbbfc80a
      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>
      dd850baf
  19. 03 Sep, 2020 2 commits
    • Hervé Beraud's avatar
      Adding pre-commit · b1122e81
      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: I04e73b8a70d32fec3e6131526e0bed0be8599c28
      Signed-off-by: default avatarMoisés Guimarães de Medeiros <moguimar@redhat.com>
      b1122e81
    • Hervé Beraud's avatar
      ignore reno generated artifacts · ee58e4fc
      Hervé Beraud authored
      Change-Id: Iefca629ae61b1da28bddba67525f5c9df164ab14
      ee58e4fc
  20. 06 Aug, 2020 1 commit
  21. 04 Aug, 2020 1 commit
  22. 24 Jul, 2020 1 commit
  23. 30 Jun, 2020 1 commit
  24. 03 Jun, 2020 1 commit
  25. 02 Jun, 2020 1 commit
  26. 26 May, 2020 2 commits
  27. 22 May, 2020 2 commits
  28. 18 May, 2020 1 commit
    • Andreas Jaeger's avatar
      Switch to newer openstackdocstheme and reno versions · 4c048064
      Andreas Jaeger authored
      Switch to openstackdocstheme 2.2.0 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
      
      Update Sphinx version as well.
      
      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.
      
      Depends-On: https://review.opendev.org/728938
      Change-Id: Ie162c8e72f4edec345c20de4517304cc14f7fe0d
      4c048064