Skip to content

Commit ef8aa48

Browse files
authored
KIPs compatibility list (#3061)
1 parent c4e7446 commit ef8aa48

5 files changed

Lines changed: 914 additions & 2 deletions

File tree

docs/_static/custom.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/* The sphinx_rtd_theme forces `white-space: nowrap` on every data-table cell.
2+
For the Supported KIPs table (class `kip-table`) we want every column
3+
except the KIP number/link (column 1) to wrap onto multiple lines. */
4+
.wy-table-responsive table.kip-table td:not(:first-child),
5+
.wy-table-responsive table.kip-table th:not(:first-child) {
6+
white-space: normal;
7+
}

docs/compatibility.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Because the kafka server protocol is backwards compatible, kafka-python is
1313
expected to work with newer broker releases as well.
1414

1515
Although kafka-python is tested and expected to work on recent broker versions,
16-
not all features are supported. Please see github open issues for feature tracking.
16+
not all features are supported. See :doc:`kips` for per-feature coverage of
17+
Kafka Improvement Proposals, or the github open issues for feature tracking.
1718
PRs welcome!
1819

1920
kafka-python is tested on python 3.8-3.14.

docs/conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,10 @@
134134
# Add any paths that contain custom static files (such as style sheets) here,
135135
# relative to this directory. They are copied after the builtin static files,
136136
# so a file named "default.css" will overwrite the builtin "default.css".
137-
#html_static_path = ['_static']
137+
html_static_path = ['_static']
138+
139+
# Custom stylesheets, loaded after the theme's own CSS.
140+
html_css_files = ['custom.css']
138141

139142
# Add any extra paths that contain custom files (such as robots.txt or
140143
# .htaccess) here, relative to this directory. These files are copied

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ See https://docs.python.org/3/howto/logging.html for overview / howto.
261261
install
262262
tests
263263
compatibility
264+
Supported KIPs <kips>
264265
support
265266
license
266267
changelog

0 commit comments

Comments
 (0)