-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from basxltd/master
Maintenance update
- Loading branch information
Showing
4 changed files
with
33 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
|
||
__version__ = '1.1.16' | ||
__version__ = "1.1.17" | ||
|
||
|
||
__version_info__ = VersionInfo._from_version_string(__version__) | ||
|
@@ -10,8 +9,8 @@ | |
__uri__ = "https://github.com/kalwalkden/django-materializecss-form" | ||
__doc__ = __description__ + " <" + __uri__ + ">" | ||
|
||
__author__ = "Kal Walkden" | ||
__email__ = "[email protected]" | ||
__author__ = "Kal Walkden, Samuel von Stachelski" | ||
__email__ = "[email protected], [email protected]" | ||
|
||
__license__ = "MIT" | ||
__copyright__ = "Copyright (c) 2020 Kal Walkden" |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import unittest | ||
|
||
import django | ||
from django.conf import settings | ||
|
||
settings.configure( | ||
DEBUG=True, | ||
DATABASES={"default": {"ENGINE": "django.db.backends.sqlite3", "name": ":memory:"}}, | ||
MIDDLEWARE_CLASSES=[], | ||
INSTALLED_APPS=[], | ||
) | ||
django.setup() | ||
|
||
|
||
class TestTags(unittest.TestCase): | ||
def test_materializecss_tag(self): | ||
from materializecssform.templatetags import materializecss # noqa | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[tox] | ||
envlist = py37 | ||
|
||
[testenv] | ||
deps = | ||
django | ||
commands = | ||
python materializecssform/tests.py |