A component-based software defined networking framework for OpenStack.
Go to file
Hervé Beraud a550ea1084 Stop to use the __future__ module.
The __future__ module [1] was used in this context to ensure compatibility
between python 2 and python 3.

We previously dropped the support of python 2.7 [2] and now we only support
python 3 so we don't need to continue to use this module and the imports
listed below.

Imports commonly used and their related PEPs:
- `division` is related to PEP 238 [3]
- `print_function` is related to PEP 3105 [4]
- `unicode_literals` is related to PEP 3112 [5]
- `with_statement` is related to PEP 343 [6]
- `absolute_import` is related to PEP 328 [7]

[1] https://docs.python.org/3/library/__future__.html
[2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html
[3] https://www.python.org/dev/peps/pep-0238
[4] https://www.python.org/dev/peps/pep-3105
[5] https://www.python.org/dev/peps/pep-3112
[6] https://www.python.org/dev/peps/pep-0343
[7] https://www.python.org/dev/peps/pep-0328

Change-Id: Ieccdcdcec557efe480dcf3546299718b0baa37a4
2020-06-18 12:24:22 +02:00
doc Switch to newer openstackdocstheme and reno versions 2020-05-23 18:09:47 +02:00
etc/os_ken Rename "ryu" to "os_ken" everywhere 2018-11-27 20:48:02 +00:00
os_ken Stop to use the __future__ module. 2020-06-18 12:24:22 +02:00
releasenotes Switch to newer openstackdocstheme and reno versions 2020-05-23 18:09:47 +02:00
tools Use unittest.mock instead of mock 2020-06-11 11:02:42 +02:00
.coveragerc Apply OpenStack Cookiecutter template 2018-09-04 17:00:24 +00:00
.gitignore Rename "ryu" to "os_ken" everywhere 2018-11-27 20:48:02 +00:00
.gitreview OpenDev Migration Patch 2019-04-19 19:48:36 +00:00
.mailmap Apply OpenStack Cookiecutter template 2018-09-04 17:00:24 +00:00
.pylintrc .pylintrc: Remove deprecated output format feature 2016-02-27 20:40:35 +09:00
.stestr.conf Apply OpenStack Cookiecutter template 2018-09-04 17:00:24 +00:00
.travis.yml Rename "ryu" to "os_ken" everywhere 2018-11-27 20:48:02 +00:00
.zuul.yaml Add Python3 victoria unit tests 2020-04-11 18:46:07 +00:00
babel.cfg Apply OpenStack Cookiecutter template 2018-09-04 17:00:24 +00:00
CONTRIBUTING.rst doc: Improve the document structure 2019-10-01 17:18:14 +09:00
HACKING.rst Apply OpenStack Cookiecutter template 2018-09-04 17:00:24 +00:00
LICENSE Apply OpenStack Cookiecutter template 2018-09-04 17:00:24 +00:00
lower-constraints.txt Use unittest.mock instead of mock 2020-06-11 11:02:42 +02:00
MANIFEST.in Rename "ryu" to "os_ken" everywhere 2018-11-27 20:48:02 +00:00
README.rst Apply OpenStack Cookiecutter template 2018-09-04 17:00:24 +00:00
requirements.txt Add minimum constraint for some requirements 2018-10-17 17:59:18 +00:00
run_tests.sh Drop Python2 support and testing 2020-01-18 19:29:14 +00:00
setup.cfg Add py38 package metadata 2020-04-24 08:23:11 -05:00
setup.py Apply OpenStack Cookiecutter template 2018-09-04 17:00:24 +00:00
test-requirements.txt Use unittest.mock instead of third party mock 2020-04-18 11:56:52 -05:00
tox.ini Bump default tox env from py37 to py38 2020-04-24 10:25:48 -05:00

os-ken

A component-based software defined networking framework in OpenStack.

This is a fork of the Ryu library tailored for OpenStack Neutron.