1. 05 Apr, 2022 4 commits
  2. 29 Mar, 2022 1 commit
    • Jiri Podivin's avatar
      setuptools: Disable auto discovery · 71716fcb
      Jiri Podivin authored
      The latest release of setuptools 61.0 made a breaking change[1] and
      because of this change 'pip install' fails with the following error.
      
      ~~~
      error: Multiple top-level packages discovered in a flat-layout:
      ['lib', 'spec', 'manifests', 'releasenotes'].
      ~~~
      
      Users that don't set 'packages', 'py_modules', or configuration'
      are still likely to observe the auto-discovery behavior, which may
      halt the build if the project contains multiple directories and/or
      multiple Python files directly under the project root.
      
      To disable auto discovery, one can do below in setup.py
      
      ~~~
      setuptools.setup(..,packages=[],..)
      ~~~
      
      or
      
      ~~~
      setuptools.setup(..,py_modules=[],..)
      ~~~
      
      [1] https://github.com/pypa/setuptools/issues/3197
      
      
      
      Note setup.py is not used to install puppet modules. However it is used
      to generate a release note, thus should be fixed.
      
      Signed-off-by: default avatarJiri Podivin <jpodivin@redhat.com>
      Change-Id: Ib0ef29358a4e7dcc86a74b0ec589b6baf24bb955
      71716fcb
  3. 25 Mar, 2022 2 commits
  4. 22 Mar, 2022 2 commits
  5. 14 Mar, 2022 4 commits
  6. 11 Mar, 2022 2 commits
  7. 09 Mar, 2022 1 commit
  8. 08 Mar, 2022 8 commits
  9. 04 Mar, 2022 1 commit
  10. 03 Mar, 2022 1 commit
  11. 02 Mar, 2022 2 commits
  12. 28 Feb, 2022 2 commits
  13. 27 Feb, 2022 1 commit
    • ZhongShengping's avatar
      Prepare Yoga M3 · 2f479cc0
      ZhongShengping authored
      Update the version metadata for Yoga milestone M3
      
      Change-Id: Ie0152be97f53524cb09266c2b968260bf2b3729a
      2f479cc0
  14. 24 Feb, 2022 1 commit
  15. 22 Feb, 2022 7 commits
  16. 21 Feb, 2022 1 commit
    • Thomas Goirand's avatar
      Switch to ini_settings · c13f2ffe
      Thomas Goirand authored
      This fixes the puppet run going from ['32'] to '32' constantly.
      
      Change-Id: Ifffe0e5835495221e94f5d4f0b48f171ede3eb09
      c13f2ffe