1. 16 Aug, 2021 1 commit
  2. 15 Apr, 2021 1 commit
  3. 28 Mar, 2021 1 commit
  4. 25 Mar, 2021 3 commits
    • Thomas Goirand's avatar
    • Thomas Goirand's avatar
      Now packaging 12.0.0_rc1 · c0400faf
      Thomas Goirand authored
      c0400faf
    • Thomas Goirand's avatar
      Merge tag '12.0.0_rc1' into debian/wallaby · 43b6a94a
      Thomas Goirand authored
      networking-sfc 12.0.0.0rc1 release candidate
      
      meta:version: 12.0.0.0rc1
      meta:diff-start: -
      meta:series: wallaby
      meta:release-type: release candidate
      meta:pypi: yes
      meta:first: no
      meta:release:Author: Hervé Beraud <hberaud@redhat.com>
      meta:release:Commit: Akihiro Motoki <amotoki@gmail.com>
      meta:release:Change-Id: Ie25b3750710a7dd43bf3dd0162b1136499bb098b
      meta:release:Code-Review+1: Akihiro Motoki <amotoki@gmail.com>
      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>
      43b6a94a
  5. 22 Mar, 2021 1 commit
  6. 10 Mar, 2021 1 commit
  7. 04 Mar, 2021 1 commit
    • wangzihao's avatar
      Remove six · 38ae30b6
      wangzihao authored
      Remove six Replace the following items with Python 3 style code.
      - six.string_types
      - six.add_metaclass
      
      Change-Id: I877552d6207f0c1fd3eb22b433af033de5d6e05c
      38ae30b6
  8. 03 Mar, 2021 2 commits
  9. 01 Mar, 2021 2 commits
    • wangzihao's avatar
      Use TOX_CONSTRAINTS_FILE · 42509e23
      wangzihao authored
      UPPER_CONSTRAINTS_FILE is old name and deprecated
      This allows to use lower-constraints file as more
      readable way instead of UPPER_CONSTRAINTS_FILE=<lower-constraints file>.
      
      Change-Id: I439535f0ac5df735bdf0caf538edad97e1b0ac8d
      42509e23
    • Manpreet Kaur's avatar
      Use unittest.mock instead of mock · 3f759390
      Manpreet Kaur authored
      Few files were still using third party mock library, this patch removes
      them and use the standard library mock module instead.
      
      Change-Id: Ic5c1d1bceff3e995d40ee49218e3627d26be1bed
      3f759390
  10. 15 Feb, 2021 1 commit
    • Akihiro Motoki's avatar
      Fix lower-constraints · 0eb06a29
      Akihiro Motoki authored
      The latest pip resolver started to check requirements strictly
      and it detects many inconsistencies in lower-constraints.txt.
      
      The summary of changes in lower-constraints.txt are as below.
      
      * Address inconsistencies detected by the pip resolver accordingly.
      * os-xenapi in l-c is bumped to 0.3.4. os-xenapi 0.3.1 is incompatible
        in eventlet versions which neutron and other projects require.
        Note that neutron 17.0.0 says os-xenapi>=0.3.1 but wallaby neutron
        already bumped it to >=0.3.4 to pass the check by the new pip.
      * Bump the minimum neutron requirement to 17.0.0 (victoria release)
        as the previous min version 13.0.0.0b2 is too old.
        Wallaby and Victoria neutron are not different much, so I think
        it is no problem to use the latest released version here.
        (This is mainly to narrow down the space which the pip resolver
         searchs and speed up the fix effort.)
      * Minimum versions in requirements.txt and test-requirements.txt
        are updated accordingly.
      * Drop linter-specific entries from lower-constraints.txt.
      * Move linter dependencies to tox.ini. It is out of the outcomes
        in [1] and its thread. Note that we don't need isort explicitly
        as pylint now set a proper version including the upper limit.
      
      [1] http://lists.openstack.org/pipermail/openstack-discuss/2020-December/019415.html
      
      Change-Id: I25a7e1d47c267631ebcb8ce34876ccfd38007e03
      0eb06a29
  11. 10 Nov, 2020 1 commit
    • likui's avatar
      remove babel.cfg · 4daafc6a
      likui authored
      Remove babel.cfg and the translation bits from setup.cfg, those are not
      needed anymore.
      
      Change-Id: I83a070211939f9eeaffa95d1b4b6d9c3b0655960
      4daafc6a
  12. 04 Nov, 2020 1 commit
  13. 18 Oct, 2020 3 commits
  14. 27 Sep, 2020 3 commits
    • Thomas Goirand's avatar
      Add python3-isort as build-depends. · b2643f74
      Thomas Goirand authored
      b2643f74
    • Thomas Goirand's avatar
      Now packaging 11.0.0_rc1 · 5ee081fd
      Thomas Goirand authored
      5ee081fd
    • Thomas Goirand's avatar
      Merge tag '11.0.0_rc1' into debian/victoria · ef7b53a2
      Thomas Goirand authored
      networking-sfc 11.0.0.0rc1 release candidate
      
      meta:version: 11.0.0.0rc1
      meta:diff-start: -
      meta:series: victoria
      meta:release-type: release candidate
      meta:pypi: yes
      meta:first: no
      meta:release:Author: Thierry Carrez <thierry@openstack.org>
      meta:release:Commit: Thierry Carrez <thierry@openstack.org>
      meta:release:Change-Id: I0334f2ef39ae0536bc3731744b128d469346c830
      meta:release:Code-Review+1: Boyron Sébastien <sboyron@redhat.com>
      meta:release:Code-Review+1: Slawek Kaplonski <skaplons@redhat.com>
      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>
      ef7b53a2
  15. 24 Sep, 2020 3 commits
  16. 20 Aug, 2020 1 commit
    • Bernard Cafarelli's avatar
      Fix pep8 job · 79f95d9c
      Bernard Cafarelli authored
      New versions of isort broke pylint. So force version 4.3.21, similarly
      to other Neutron projects fixes
      
      Change-Id: I9eb5fb14c67171c8ba1fa1ea12d3154d6ea19aa7
      79f95d9c
  17. 23 May, 2020 1 commit
    • Andreas Jaeger's avatar
      Switch to newer openstackdocstheme and reno versions · 211e5156
      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.
      
      Set openstackdocs_pdf_link to link to PDF file. Note that
      the link to the published document only works on docs.openstack.org
      where the PDF file is placed in the top-level html directory. The
      site-preview places the PDF in a pdf directory.
      
      Disable openstackdocs_auto_name to use 'project' variable 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.
      
      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.
      
      See also
      http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html
      
      Change-Id: Iffe046bc0ae6b1230d994593ffd29ca21bf369b0
      211e5156
  18. 13 May, 2020 1 commit
  19. 10 May, 2020 1 commit
  20. 07 May, 2020 1 commit
  21. 06 May, 2020 1 commit
  22. 29 Apr, 2020 3 commits
    • Thomas Goirand's avatar
    • Thomas Goirand's avatar
      Now packaging 10.0.0_rc1. · b406a8ad
      Thomas Goirand authored
      b406a8ad
    • Thomas Goirand's avatar
      Merge tag '10.0.0_rc1' into debian/ussuri · 780004d7
      Thomas Goirand authored
      networking-sfc 10.0.0.0rc1 release candidate
      
      meta:version: 10.0.0.0rc1
      meta:diff-start: -
      meta:series: ussuri
      meta:release-type: release candidate
      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: Ie0a7f3aedd642818aa60276feebb85ba5c4ead05
      meta:release:Code-Review+1: Slawek Kaplonski <skaplons@redhat.com>
      meta:release:Code-Review+2: Sean McGinnis <sean.mcginnis@gmail.com>
      meta:release:Workflow+1: Sean McGinnis <sean.mcginnis@gmail.com>
      780004d7
  23. 27 Apr, 2020 2 commits
  24. 24 Apr, 2020 1 commit
  25. 23 Apr, 2020 1 commit
  26. 17 Apr, 2020 1 commit
    • Andreas Jaeger's avatar
      Cleanup py27 support · 95df8741
      Andreas Jaeger authored
      This repo is now testing only with Python 3, so let's make
      a few cleanups:
      - Remove python 2.7 stanza from setup.py
      - Remove obsolete sections from setup.cfg
      - Update classifiers
      - Update requirements, no need for python_version anymore
      - Use newer openstackdocstheme and Sphinx versions
      - Cleanup */source/conf.py to remove now obsolete content.
      
      Change-Id: I9be10bba84b2f9a3c99941075a9a7d4473971aa1
      95df8741
  27. 01 Apr, 2020 1 commit