summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.zuul.yaml2
-rw-r--r--doc/source/conf.py12
-rw-r--r--releasenotes/source/conf.py16
-rw-r--r--stevedore/_cache.py3
4 files changed, 17 insertions, 16 deletions
diff --git a/.zuul.yaml b/.zuul.yaml
index 24a1c11..d4c4242 100644
--- a/.zuul.yaml
+++ b/.zuul.yaml
@@ -2,7 +2,7 @@
templates:
- check-requirements
- lib-forward-testing-python3
- - openstack-python3-zed-jobs
+ - openstack-python3-antelope-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 5f3e370..8926b14 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -74,8 +74,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'stevedore'
-copyright = u'2016, DreamHost'
+project = 'stevedore'
+copyright = '2016, DreamHost'
# List of patterns, relative to source directory, that match files and
@@ -107,8 +107,8 @@ latex_documents = [
(
'index',
'stevedore.tex',
- u'stevedore Documentation',
- u'DreamHost',
+ 'stevedore Documentation',
+ 'DreamHost',
'manual'
),
]
@@ -122,8 +122,8 @@ texinfo_documents = [
(
'index',
'stevedore',
- u'stevedore Documentation',
- u'DreamHost',
+ 'stevedore Documentation',
+ 'DreamHost',
'stevedore',
'One line description of project.',
'Miscellaneous'
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py
index 6d53444..1368071 100644
--- a/releasenotes/source/conf.py
+++ b/releasenotes/source/conf.py
@@ -60,8 +60,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'stevedore Release Notes'
-copyright = u'2016, stevedore Developers'
+project = 'stevedore Release Notes'
+copyright = '2016, stevedore Developers'
# Release do not need a version number in the title, they
# cover multiple versions.
@@ -208,8 +208,8 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'stevedoreReleaseNotes.tex',
- u'stevedore Release Notes Documentation',
- u'stevedore Developers', 'manual'),
+ 'stevedore Release Notes Documentation',
+ 'stevedore Developers', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -239,8 +239,8 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'stevedoreReleaseNotes',
- u'stevedore Release Notes Documentation',
- [u'stevedore Developers'], 1)
+ 'stevedore Release Notes Documentation',
+ ['stevedore Developers'], 1)
]
# If true, show URL addresses after external links.
@@ -254,8 +254,8 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'stevedoreReleaseNotes',
- u'stevedore Release Notes Documentation',
- u'stevedore Developers', 'stevedoreReleaseNotes',
+ 'stevedore Release Notes Documentation',
+ 'stevedore Developers', 'stevedoreReleaseNotes',
'One line description of project.',
'Miscellaneous'),
]
diff --git a/stevedore/_cache.py b/stevedore/_cache.py
index 6a76bc8..da53114 100644
--- a/stevedore/_cache.py
+++ b/stevedore/_cache.py
@@ -104,7 +104,8 @@ def _build_cacheable_data():
# importlib-metadata 4.0 or later (or stdlib importlib.metadata in
# Python 3.9 or later)
real_groups = {
- name: real_groups.select(name=name) for name in real_groups.names
+ group: real_groups.select(group=group)
+ for group in real_groups.groups
}
# Convert the namedtuple values to regular tuples