Permalink
Please
sign in to comment.
Browse files
Initial pass of removing Python 2 support
This commit removes Six as a dependency for Pelican, replacing the relevant aliases with the proper Python 3 imports. It also removes references to Python 2 logic that did not require Six.
- Loading branch information
Showing
with
126 additions
and 459 deletions.
- +0 −1 .gitignore
- +1 −0 THANKS
- +0 −1 docs/conf.py
- +3 −17 pelican/__init__.py
- +0 −1 pelican/__main__.py
- +1 −3 pelican/cache.py
- +11 −21 pelican/contents.py
- +2 −9 pelican/generators.py
- +4 −49 pelican/log.py
- +1 −4 pelican/paginator.py
- +10 −14 pelican/readers.py
- +1 −4 pelican/rstdirectives.py
- +7 −10 pelican/server.py
- +5 −8 pelican/settings.py
- +0 −1 pelican/signals.py
- +0 −1 pelican/tests/default_conf.py
- +1 −3 pelican/tests/support.py
- +0 −1 pelican/tests/test_cache.py
- +8 −17 pelican/tests/test_contents.py
- +0 −1 pelican/tests/test_generators.py
- +0 −1 pelican/tests/test_importer.py
- +0 −1 pelican/tests/test_paginator.py
- +0 −1 pelican/tests/test_pelican.py
- +3 −8 pelican/tests/test_readers.py
- +0 −1 pelican/tests/test_rstdirectives.py
- +1 −2 pelican/tests/test_server.py
- +0 −1 pelican/tests/test_settings.py
- +0 −1 pelican/tests/test_testsuite.py
- +0 −1 pelican/tests/test_urlwrappers.py
- +2 −7 pelican/tests/test_utils.py
- +8 −32 pelican/tools/pelican_import.py
- +29 −52 pelican/tools/pelican_quickstart.py
- +0 −1 pelican/tools/pelican_themes.py
- +0 −1 pelican/tools/templates/pelicanconf.py.jinja2
- +0 −1 pelican/tools/templates/publishconf.py.jinja2
- +6 −10 pelican/urlwrappers.py
- +13 −38 pelican/utils.py
- +2 −9 pelican/writers.py
- +4 −116 poetry.lock
- +0 −1 pyproject.toml
- +0 −1 samples/pelican.conf.py
- +0 −1 samples/pelican.conf_FR.py
- +3 −6 setup.py

Oops, something went wrong.
0 comments on commit
1e0e541