-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/5.0: Bump version to 5.0.0 Update setup.py Refactor how we get the default storage class Convert the anchor kwarg from SafeString to str. Add tests for new Django 4.2 settings Fix github workflow python versions Use proper envlist matrix Upgrade project to latest versions of python and django docs: Fix a few typos Fix equality checking of paths by normalizing them Fix: only seek files when possible Properly close files after finish using them Use yield from Remove u'' prefix Update setup.py Remove workaround Small whitespace and line length fixes Prefer not in Do not call getattr with a constant attribute value, it is not any safer than normal property access. Use dict/set literals/comprehensions Use Python 3 style classes and super calls Clean up imports Use @register.tag decorator Remove Python 2 compat method Remove _autodiscover_modules_fallback Use the parse_bits implementation from Django Remove usage of six Remove lib module Remove lib.StringIO Remove lib.NullHandler in favor of using logging.NullHandler directly Remove lib.smart_text / lib.force_text / lib.force_bytes Remove compatibility with South Remove __future__ imports Remove fallback imports Remove fallback settings Only test on currently supported versions of Python and Django
- Loading branch information
Showing
48 changed files
with
454 additions
and
575 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
# flake8: noqa | ||
from . import conf | ||
from . import generatorlibrary | ||
from .specs import ImageSpec | ||
from . import conf, generatorlibrary | ||
from .pkgmeta import * | ||
from .registry import register, unregister | ||
from .specs import ImageSpec | ||
|
||
__all__ = [ | ||
'ImageSpec', 'conf', 'generatorlibrary', 'register', 'unregister', | ||
'__title__', '__author__', '__version__', '__license__' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.