1. 13 Jun, 2022 6 commits
  2. 05 Jun, 2022 1 commit
  3. 22 May, 2022 1 commit
  4. 09 May, 2022 1 commit
    • Takashi Kajinami's avatar
      Remove six · 23e64753
      Takashi Kajinami authored
      This library no longer supports Python 2, thus usage of six can be
      removed.
      
      Change-Id: I8d0c1cfd6dff375b3b7756a5b36c95a2df3f04c6
      23e64753
  5. 04 Mar, 2022 2 commits
  6. 07 Feb, 2022 1 commit
    • Takashi Kajinami's avatar
      setup.cfg: Replace dashes by underscores · a9abc548
      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: I660fadc0b9798214719fe1a1aac0731584806503
      a9abc548
  7. 24 Dec, 2021 1 commit
  8. 16 Dec, 2021 4 commits
  9. 10 Sep, 2021 2 commits
  10. 06 Jul, 2021 1 commit
    • Takashi Kajinami's avatar
      Replace oslo_utils.fnmatch with fnmatch · b4383147
      Takashi Kajinami authored
      The oslo_utils.fnmatch module was added to solve an issue in py2.7 but
      it is no longer required because py2.7 is no longer supported.
      The module was deprecated since oslo.utils 4.9.1[1] and the stdlib's
      fnmatch module should be used instead.
      
      [1] 4c893c92f551c9dd2a7cfbe7ae8171ad8139df0b
      
      Change-Id: I95535adeb45363500b3ed9729bb61cb4308d23b9
      b4383147
  11. 18 Jun, 2021 2 commits
  12. 01 Jun, 2021 1 commit
  13. 04 Apr, 2021 1 commit
  14. 19 Mar, 2021 1 commit
    • OpenStack Release Bot's avatar
      Update master for stable/wallaby · 3a7b0388
      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: Idf4b001e1172665fa4a65ce34f9a512a42ab8e8d
      3a7b0388
  15. 01 Dec, 2020 1 commit
  16. 16 Nov, 2020 1 commit
  17. 28 Oct, 2020 1 commit
  18. 27 Oct, 2020 2 commits
  19. 16 Oct, 2020 1 commit
  20. 11 Sep, 2020 2 commits
  21. 06 Sep, 2020 1 commit
  22. 19 Aug, 2020 1 commit
  23. 09 Jun, 2020 1 commit
  24. 02 Jun, 2020 1 commit
  25. 22 May, 2020 1 commit
    • Andreas Jaeger's avatar
      Switch to newer openstackdocstheme and reno versions · 3fa30442
      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.
      
      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.
      
      Set openstackdocs_auto_name to use 'project' 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.
      
      See also
      http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html
      
      Change-Id: I5598eebe898555869cd65a74950fdbd76a7baa46
      3fa30442
  26. 13 May, 2020 1 commit
    • Ghanshyam Mann's avatar
      Fix hacking min version to 3.0.1 · c588de46
      Ghanshyam Mann authored
      flake8 new release 3.8.0 added new checks and gate pep8
      job start failing. hacking 3.0.1 fix the pinning of flake8 to
      avoid bringing in a new version with new checks.
      
      Though it is fixed in latest hacking but 2.0 and 3.0 has cap for
      flake8 as <4.0.0 which mean flake8 new version 3.9.0 can also
      break the pep8 job if new check are added.
      
      To avoid similar gate break in future, we need to bump the hacking min
      version.
      
      - http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014828.html
      
      Change-Id: I719e643044fbdab4d24edf6457c9096ee5f8fd77
      c588de46
  27. 06 May, 2020 1 commit
    • jacky06's avatar
      Use unittest.mock instead of third party mock · 8a956686
      jacky06 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: I5cf252c1a22977d3c87898e723e5001cc87a0d87
      8a956686