File tree 8 files changed +103
-5
lines changed
8 files changed +103
-5
lines changed Original file line number Diff line number Diff line change
1
+ foundation_formtags package
2
+ ===========================
3
+
4
+ Subpackages
5
+ -----------
6
+
7
+ .. toctree ::
8
+
9
+ foundation_formtags.templatetags
10
+ foundation_formtags.tests
11
+
12
+ Module contents
13
+ ---------------
14
+
15
+ .. automodule :: foundation_formtags
16
+ :members:
17
+ :undoc-members:
18
+ :show-inheritance:
Original file line number Diff line number Diff line change
1
+ foundation_formtags.templatetags package
2
+ ========================================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ foundation_formtags.templatetags.foundation_formtags module
8
+ -----------------------------------------------------------
9
+
10
+ .. automodule :: foundation_formtags.templatetags.foundation_formtags
11
+ :members:
12
+ :undoc-members:
13
+ :show-inheritance:
14
+
15
+
16
+ Module contents
17
+ ---------------
18
+
19
+ .. automodule :: foundation_formtags.templatetags
20
+ :members:
21
+ :undoc-members:
22
+ :show-inheritance:
Original file line number Diff line number Diff line change
1
+ foundation_formtags.tests package
2
+ =================================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ foundation_formtags.tests.forms module
8
+ --------------------------------------
9
+
10
+ .. automodule :: foundation_formtags.tests.forms
11
+ :members:
12
+ :undoc-members:
13
+ :show-inheritance:
14
+
15
+ foundation_formtags.tests.tests module
16
+ --------------------------------------
17
+
18
+ .. automodule :: foundation_formtags.tests.tests
19
+ :members:
20
+ :undoc-members:
21
+ :show-inheritance:
22
+
23
+
24
+ Module contents
25
+ ---------------
26
+
27
+ .. automodule :: foundation_formtags.tests
28
+ :members:
29
+ :undoc-members:
30
+ :show-inheritance:
Original file line number Diff line number Diff line change
1
+ foundation_formtags
2
+ ===================
3
+
4
+ .. toctree ::
5
+ :maxdepth: 4
6
+
7
+ foundation_formtags
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Core Committers
12
12
13
13
* Lendl Smith (`@ilendl2 `_)
14
14
* Parbhat Puri (`@parbhat `_)
15
-
15
+ * Daniel Andrilik (` @andrlik `_)
16
16
17
17
Contributors
18
18
------------
@@ -22,4 +22,5 @@ None yet. Why not be the first?
22
22
23
23
.. _`@chrisdev` : https://github.com/chrisdev
24
24
.. _`@ilendl2` : https://github.com/ilendl2
25
- .. _`@parbhat` : https://github.com/parbhat
25
+ .. _`@parbhat` : https://github.com/parbhat
26
+ .. _`@andrlik` : https://github.com/andrlik
Original file line number Diff line number Diff line change 1
1
History
2
- ========
2
+ =======
3
+
4
+ 0.0.9 (2017-06-05)
5
+ -------------------
6
+
7
+ * Cleaned up travis configuration for tox to improve testing
8
+
9
+ 0.0.8 (2017-05-09)
10
+ -------------------
11
+
12
+ * Make it Compatible with Django 1.11
13
+
14
+ 0.0.7 (2016-09-25)
15
+ -------------------
16
+
17
+ * Make Compatible with Django 1.10
18
+ * Minimum version is now Django 1.8. For earlier versions of Django use 0.0.6
3
19
4
20
0.0.6 (2016-08-05)
5
21
------------------
@@ -10,3 +26,4 @@ Fix for checkbox rendering and New error class for Non field errors in Foundatio
10
26
---------------------
11
27
12
28
* First release on PyPI.
29
+
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.0.8
2
+ current_version = 0.0.9
3
3
4
4
[wheel]
5
5
universal = 1
6
6
7
7
[flake8]
8
8
exclude = docs/*
9
9
10
+ [bumpversion:file:setup.py]
11
+
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
3
4
+ __version__ = '0.0.9'
4
5
5
6
try :
6
7
from setuptools import setup
26
27
27
28
setup (
28
29
name = 'django-foundation-formtags' ,
29
- version = '0.0.8' ,
30
+ version = __version__ ,
30
31
description = "Templatetags to add Zurb Foundation support to Django Forms" ,
31
32
long_description = readme + '\n \n ' + history ,
32
33
author = "Christopher Clarke" ,
You can’t perform that action at this time.
0 commit comments