Update "What about PIL?" section

PyPI moderators gave PIL project to Pillow team in January 2020
This commit is contained in:
Alex Clark 2024-03-07 10:46:56 -05:00
parent ceb0c575e8
commit c4067b08eb
3 changed files with 8 additions and 2 deletions

View File

@ -35,4 +35,7 @@ What about PIL?
Prior to Pillow 2.0.0, very few image code changes were made. Pillow 2.0.0 Prior to Pillow 2.0.0, very few image code changes were made. Pillow 2.0.0
added Python 3 support and includes many bug fixes from many contributors. added Python 3 support and includes many bug fixes from many contributors.
As more time passes since the last PIL release (1.1.7 in 2009), the likelihood of a new PIL release decreases. However, we've yet to hear an official "PIL is dead" announcement. .. role:: strike
:class: strike
As more time passes since the last PIL release (1.1.7 in 2009), the likelihood of a new PIL release decreases. :strike:`However, we've yet to hear an official "PIL is dead" announcement.` In January 2020, `the PyPI moderators exhausted the PEP 541 process for contacting the PIL project owner <https://github.com/python-pillow/Pillow/issues/1535#issuecomment-570308446>`_ and the `PIL project on PyPI <https://pypi.org/project/PIL>`_ was transferred to the `Pillow team <https://github.com/python-pillow/Pillow/graphs/contributors>`_.

View File

@ -167,7 +167,7 @@ html_static_path = ["resources"]
# directly to the root of the documentation. # directly to the root of the documentation.
# html_extra_path = [] # html_extra_path = []
html_css_files = ["css/dark.css"] html_css_files = ["css/dark.css", "css/strike.css"]
html_js_files = [ html_js_files = [
"js/activate_tab.js", "js/activate_tab.js",

View File

@ -0,0 +1,3 @@
.strike {
text-decoration: line-through;
}