1. 08 Sep, 2021 1 commit
  2. 02 Sep, 2021 2 commits
  3. 31 Aug, 2021 1 commit
  4. 07 Jul, 2021 1 commit
  5. 18 Jun, 2021 1 commit
    • Slawek Kaplonski's avatar
      Use ovs constants from neutron-lib · 21dce307
      Slawek Kaplonski authored
      Ovs constants were moved from neutron to neutron_lib some time ago.
      This patch switches to use them from neutron-lib already.
      
      This patch bumps min version of neutron-lib to 2.11 as it is version
      which has those constants already.
      
      It also fixes some small issue in grouping of imports.
      
      Change-Id: I4f63b8cd737575eed948a15a439ef9ca9566e374
      21dce307
  6. 17 Jun, 2021 1 commit
  7. 19 May, 2021 2 commits
  8. 24 Mar, 2021 2 commits
  9. 22 Mar, 2021 1 commit
  10. 10 Mar, 2021 1 commit
  11. 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
  12. 03 Mar, 2021 2 commits
  13. 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
  14. 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
  15. 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
  16. 04 Nov, 2020 1 commit
  17. 24 Sep, 2020 3 commits
  18. 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
  19. 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
  20. 07 May, 2020 1 commit
  21. 06 May, 2020 1 commit
  22. 27 Apr, 2020 2 commits
  23. 24 Apr, 2020 1 commit
  24. 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
  25. 01 Apr, 2020 1 commit
  26. 18 Dec, 2019 1 commit
  27. 25 Oct, 2019 1 commit
  28. 18 Oct, 2019 2 commits
  29. 15 Oct, 2019 1 commit
  30. 01 Oct, 2019 1 commit
    • Akihiro Motoki's avatar
      PDF documentation build · 4daff054
      Akihiro Motoki authored
      - doc/source/readme.rst is introduced to render both HTML and PDF
        versions properly. The latex builder used to build PDF recognizes
        the document structure based on toctree directives, so a hidden
        toctree for readme is added to index.rst.
      - doc/requiremens.txt is introduced to split the documentation
        dependencies following the community convention.
      - Along with the previous, python modules only in doc/requirements.txt
        are dropped from lower-constraints.txt as we are not using
        lower-constraints for documentation build.
      
      Change-Id: I8e58cca91506f72b868dec151e070e0f8a69ded4
      Story: 2006099
      Task: 35126
      4daff054
  31. 26 Sep, 2019 1 commit
    • Slawek Kaplonski's avatar
      [Functional tests] Fix SIGHUP handling tests · 0644862c
      Slawek Kaplonski authored
      Tests in networking_sfc.functional.test_server module are testing how
      service is handling SIGHUP signal.
      
      Recently this was changed in Oslo.service with [1] and our tests
      were failing because they were still expecting that after sending
      SIGHUP to the process, stop() and than start() method will be called.
      
      But as our services uses "mutate" as restart method, since [1] such
      process don't executes stop() and start() after SIGHUP. It now executes
      only reset() method.
      Similar change was recently done in Neutron's functional tests in [2].
      This patch reflects that change in networking-sfc functional tests.
      
      [1] https://review.opendev.org/#/c/641907/
      [2] https://review.opendev.org/#/c/680001/
      
      Change-Id: I22629c59da983f47ef8b1862afb9a62bdfd78b02
      Closes-Bug: #1842659
      0644862c