Skip to content

Commit d13d10a

Browse files
committed
update setup and docs
1 parent de01b87 commit d13d10a

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

README.rst

+15
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ Allows you to build forms in the CMS admin area and add them to any StreamField
77
You can create your own types of forms meaning an endless array of possibilities. Templates can be created
88
which will then appear as choices when you build your form, allowing you to display and submit a form however you want.
99

10+
Backwards Compatibility
11+
-----------------------
12+
13+
If you are using a version of wagtail 1.x, then the latest compatible version of this package is 1.6.3:
14+
15+
.. code:: bash
16+
17+
$ pip install wagtailstreanforms<2
18+
19+
Other wise you must install a version of this package from 2 onwards:
20+
21+
.. code:: bash
22+
23+
$ pip install wagtailstreanforms>=2
24+
1025
What else is included?
1126
----------------------
1227

docs/index.rst

+15
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,21 @@ Allows you to build forms in the CMS admin area and add them to any StreamField
1010
You can create your own types of forms meaning an endless array of possibilities. Templates can be created
1111
which will then appear as choices when you build your form, allowing you to display and submit a form however you want.
1212

13+
Backwards Compatibility
14+
-----------------------
15+
16+
If you are using a version of wagtail 1.x, then the latest compatible version of this package is 1.6.3:
17+
18+
.. code:: bash
19+
20+
$ pip install wagtailstreanforms<2
21+
22+
Other wise you must install a version of this package from 2 onwards:
23+
24+
.. code:: bash
25+
26+
$ pip install wagtailstreanforms>=2
27+
1328
What else is included?
1429
----------------------
1530

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires = [
1111
'Django>=2,<2.1',
1212
'django-recaptcha>=1.3.1',
13-
'wagtail>=2.0b1,<2.1'
13+
'wagtail>=2,<2.1'
1414
]
1515

1616
documentation_extras = [

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ deps =
1010
mock
1111

1212
dj200: Django>=2,<2.1
13-
wt200: wagtail>=2.0b1,<2.1
13+
wt200: wagtail>=2,<2.1
1414

1515
commands =
1616
coverage erase

0 commit comments

Comments
 (0)