Library for running OpenStack services
Go to file
Hervé Beraud d6f72ec70b 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: I42e2fc25eaec2e79540c3ab60d8752141637f7b8
2020-06-02 20:40:55 +02:00
doc Merge "Add release notes links to doc index" 2020-05-26 13:51:51 +00:00
oslo_service Stop to use the __future__ module. 2020-06-02 20:40:55 +02:00
releasenotes Switch to newer openstackdocstheme and reno versions 2020-05-18 20:54:17 +02:00
.coveragerc Update .coveragerc after the removal of respective directory 2016-10-18 17:45:44 +05:30
.gitignore Move doc related modules to doc/requirements.txt 2019-08-24 09:49:33 +08:00
.gitreview OpenDev Migration Patch 2019-04-19 19:36:22 +00:00
.mailmap exported from oslo-incubator by graduate.sh 2015-05-21 16:51:40 +03:00
.stestr.conf Convert oslo.service to using stestr 2018-07-04 08:39:21 +07:00
.zuul.yaml Add Python3 victoria unit tests 2020-04-14 10:17:38 +00:00
CONTRIBUTING.rst rearrange existing documentation to fit the new standard layout 2017-07-01 19:52:23 +09:00
HACKING.rst Update hacking version 2019-02-13 17:08:38 +08:00
LICENSE exported from oslo-incubator by graduate.sh 2015-05-21 16:51:40 +03:00
README.rst Replace git.openstack.org URLs with opendev.org URLs 2019-04-30 13:48:51 +08:00
lower-constraints.txt Merge "Drop six usages" 2020-05-26 18:30:10 +00:00
requirements.txt Drop six usages 2020-05-26 15:20:01 +02:00
setup.cfg Remove translation sections from setup.cfg 2020-05-15 11:16:23 +08:00
setup.py remove outdated header 2020-02-10 18:33:49 +01:00
test-requirements.txt Fix hacking min version to 3.0.1 2020-05-22 10:53:52 +08:00
tox.ini Bump default tox env from py37 to py38 2020-04-24 10:25:51 -05:00

README.rst

Team and repository tags

image

oslo.service -- Library for running OpenStack services

Latest Version

Downloads

oslo.service provides a framework for defining new long-running services using the patterns established by other OpenStack applications. It also includes utilities long-running applications might need for working with SSL or WSGI, performing periodic operations, interacting with systemd, etc.