1. 21 Jun, 2022 1 commit
  2. 10 Jun, 2022 1 commit
  3. 09 May, 2022 1 commit
    • wangzihao's avatar
      Remove six · b625d7b1
      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
      b625d7b1
  4. 03 Mar, 2022 1 commit
    • OpenStack Release Bot's avatar
      Update master for stable/yoga · 9c3c2c98
      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
      9c3c2c98
  5. 08 Feb, 2022 2 commits
  6. 07 Feb, 2022 3 commits
  7. 06 Feb, 2022 2 commits
  8. 26 Nov, 2021 1 commit
    • rabi's avatar
      Fix aodhclient for pyparse 3.0.6 · 3a36ed17
      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
      3a36ed17
  9. 17 Sep, 2021 1 commit
    • OpenStack Release Bot's avatar
      Update master for stable/xena · bc7a4834
      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
      bc7a4834
  10. 12 Mar, 2021 2 commits
  11. 10 Sep, 2020 2 commits
  12. 24 Aug, 2020 1 commit
  13. 15 Jun, 2020 1 commit
    • wu.chunyang's avatar
      Remove translation sections from setup.cfg · 7153763b
      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
      7153763b
  14. 02 Jun, 2020 1 commit
  15. 22 May, 2020 1 commit
    • Andreas Jaeger's avatar
      Switch to newer openstackdocstheme and reno versions · d05a4306
      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
      d05a4306
  16. 26 Apr, 2020 1 commit
  17. 24 Apr, 2020 2 commits
    • Sean McGinnis's avatar
      Bump default tox env from py37 to py38 · 5d55e9b3
      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: default avatarSean McGinnis <sean.mcginnis@gmail.com>
      5d55e9b3
    • Sean McGinnis's avatar
      Add py38 package metadata · 03b51dfc
      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: default avatarSean McGinnis <sean.mcginnis@gmail.com>
      03b51dfc
  18. 20 Apr, 2020 1 commit
  19. 11 Apr, 2020 2 commits
  20. 04 Apr, 2020 1 commit
    • Andreas Jaeger's avatar
      Cleanup py27 support · a6f331e4
      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
      a6f331e4
  21. 03 Apr, 2020 1 commit
    • Andreas Jaeger's avatar
      Update hacking for Python3 · bb1c4d63
      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
      bb1c4d63
  22. 04 Feb, 2020 1 commit
  23. 20 Dec, 2019 1 commit
    • caoyuan's avatar
      tox: Keeping going with docs · b5ca8f90
      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
      b5ca8f90
  24. 14 Dec, 2019 1 commit
  25. 26 Nov, 2019 2 commits
    • Zuul's avatar
      Merge "Switch to Ussuri jobs" · a80a985f
      Zuul authored
      a80a985f
    • Lingxian Kong's avatar
      Support threshold type alarm again · 428e394e
      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
      428e394e
  26. 22 Oct, 2019 1 commit
  27. 20 Oct, 2019 1 commit
  28. 20 Sep, 2019 1 commit
    • OpenStack Release Bot's avatar
      Update master for stable/train · 015226ce
      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
      015226ce
  29. 01 Aug, 2019 1 commit
    • pengyuesheng's avatar
      Bump the openstackdocstheme extension to 1.20 · 0d7aa082
      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
      0d7aa082
  30. 08 Jul, 2019 1 commit
  31. 05 Jul, 2019 1 commit