File tree 8 files changed +24
-23
lines changed
8 files changed +24
-23
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Released 2024-01-06
7
7
8
8
- Fix :class: `~fields.SelectMultipleField ` value coercion on validation.
9
9
:issue: `822 ` :pr: `823 `
10
+ - Move the repository to the pallets-eco organization.
10
11
11
12
Version 3.1.1
12
13
-------------
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ with frameworks even better.
48
48
49
49
.. _Flask-WTF : https://flask-wtf.readthedocs.io/
50
50
.. _WTForms-Alchemy : https://wtforms-alchemy.readthedocs.io/
51
- .. _WTForms-SQLAlchemy : https://github.com/wtforms /wtforms-sqlalchemy
52
- .. _WTForms-AppEngine : https://github.com/wtforms /wtforms-appengine
53
- .. _WTForms-Django : https://github.com/wtforms /wtforms-django
51
+ .. _WTForms-SQLAlchemy : https://github.com/pallets-eco /wtforms-sqlalchemy
52
+ .. _WTForms-AppEngine : https://github.com/pallets-eco /wtforms-appengine
53
+ .. _WTForms-Django : https://github.com/pallets-eco /wtforms-django
54
54
.. _WTForms-Bootstrap5 : https://github.com/LaunchPlatform/wtforms-bootstrap5
55
55
.. _Starlette-WTF : https://github.com/muicss/starlette-wtf
56
56
.. _Bootstrap-Flask : https://github.com/helloflask/bootstrap-flask
61
61
62
62
- Documentation: https://wtforms.readthedocs.io/
63
63
- Releases: https://pypi.org/project/WTForms/
64
- - Code: https://github.com/wtforms /wtforms
65
- - Issue tracker: https://github.com/wtforms /wtforms/issues
64
+ - Code: https://github.com/pallets-eco /wtforms
65
+ - Issue tracker: https://github.com/pallets-eco /wtforms/issues
66
66
- Discord Chat: https://discord.gg/F65P7Z9
67
- - Translation: https://hosted.weblate.org/projects/wtforms /wtforms/
67
+ - Translation: https://hosted.weblate.org/projects/pallets-eco /wtforms/
Original file line number Diff line number Diff line change 22
22
intersphinx_mapping = {
23
23
"python" : ("https://docs.python.org/3/" , None ),
24
24
}
25
- issues_github_path = "wtforms /wtforms"
25
+ issues_github_path = "pallets-eco /wtforms"
26
26
27
27
# HTML -----------------------------------------------------------------
28
28
29
29
html_theme = "werkzeug"
30
30
html_context = {
31
31
"project_links" : [
32
32
ProjectLink ("PyPI Releases" , "https://pypi.org/project/WTForms/" ),
33
- ProjectLink ("Source Code" , "https://github.com/wtforms /wtforms/" ),
33
+ ProjectLink ("Source Code" , "https://github.com/pallets-eco /wtforms/" ),
34
34
ProjectLink (
35
35
"Discord Chat" ,
36
36
"https://discord.gg/F65P7Z9" ,
37
37
),
38
- ProjectLink ("Issue Tracker" , "https://github.com/wtforms /wtforms/issues/" ),
38
+ ProjectLink ("Issue Tracker" , "https://github.com/pallets-eco /wtforms/issues/" ),
39
39
]
40
40
}
41
41
html_sidebars = {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ How to Contribute
12
12
WTForms is now on `GitHub `_, so all contributions should be either associated
13
13
with a pull request or with a ticket & patch.
14
14
15
- .. _GitHub : https://github.com/wtforms /wtforms
15
+ .. _GitHub : https://github.com/pallets-eco /wtforms
16
16
17
17
18
18
Contribution Guidelines
@@ -38,7 +38,7 @@ Code submitted should:
38
38
advantage of `Github Actions `_ for running tests on all supported Python
39
39
versions.
40
40
41
- .. _Github Actions : https://github.com/wtforms /wtforms/actions
41
+ .. _Github Actions : https://github.com/pallets-eco /wtforms/actions
42
42
.. _PEP8 : https://www.python.org/dev/peps/pep-0008/
43
43
44
44
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ Extensions
5
5
6
6
All WTForms extensions were removed in WTForms 3.0.
7
7
8
- * ``wtforms.ext.appengine `` was extracted to `WTForms-Appengine <https://github.com/wtforms /wtforms-appengine >`_
8
+ * ``wtforms.ext.appengine `` was extracted to `WTForms-Appengine <https://github.com/pallets-eco /wtforms-appengine >`_
9
9
* ``wtforms.ext.csrf `` was integrated into WTForms core. See :doc: `CSRF Docs <csrf >`
10
- * ``wtforms.ext.django `` was extracted to `WTForms-Django <https://github.com/wtforms /wtforms-django >`_
10
+ * ``wtforms.ext.django `` was extracted to `WTForms-Django <https://github.com/pallets-eco /wtforms-django >`_
11
11
* ``wtforms.ext.i18n `` was integrated into WTForms core. See :doc: `i18n `
12
- * ``wtforms.ext.sqlalchemy `` was extracted to `WTForms-SQLAlchemy <https://github.com/wtforms /wtforms-sqlalchemy >`_
12
+ * ``wtforms.ext.sqlalchemy `` was extracted to `WTForms-SQLAlchemy <https://github.com/pallets-eco /wtforms-sqlalchemy >`_
Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ but if it's not listed, it doesn't mean it won't work.
37
37
Special support is there for `SQLAlchemy `_, `Google App Engine `_, and `Django `_
38
38
collections via companion packages.
39
39
40
- .. _SQLAlchemy : https://github.com/wtforms /wtforms-sqlalchemy
41
- .. _Google App Engine : https://github.com/wtforms /wtforms-appengine
42
- .. _WTForms-Django : https://github.com/wtforms /wtforms-django
43
- .. _Django : https://github.com/wtforms /wtforms-django
40
+ .. _SQLAlchemy : https://github.com/pallets-eco /wtforms-sqlalchemy
41
+ .. _Google App Engine : https://github.com/pallets-eco /wtforms-appengine
42
+ .. _WTForms-Django : https://github.com/pallets-eco /wtforms-django
43
+ .. _Django : https://github.com/pallets-eco /wtforms-django
44
44
45
45
Does WTForms support unicode?
46
46
-----------------------------
@@ -67,7 +67,7 @@ WTForms is not that scary. Really. We try to keep it as succinct and readable as
67
67
possible. For bugs and feature requests, you can file a
68
68
ticket on the `project page `_.
69
69
70
- .. _project page : https://github.com/wtforms /wtforms
70
+ .. _project page : https://github.com/pallets-eco /wtforms
71
71
72
72
73
73
How do I mark in a template when a field is required?
Original file line number Diff line number Diff line change @@ -68,8 +68,8 @@ the new API's unless it needs to work across both WTForms 1.x and 2.x
68
68
69
69
.. _WTForms-Alchemy : https://pypi.org/project/WTForms-Alchemy/
70
70
.. _WTForms-Alchemy-docs : https://wtforms-alchemy.readthedocs.io/
71
- .. _WTForms-Appengine : https://github.com/wtforms /wtforms-appengine
72
- .. _WTForms-Django : https://github.com/wtforms /wtforms-django
71
+ .. _WTForms-Appengine : https://github.com/pallets-eco /wtforms-appengine
72
+ .. _WTForms-Django : https://github.com/pallets-eco /wtforms-django
73
73
74
74
75
75
Low-level Changes
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ dynamic = ["version"]
22
22
[project .urls ]
23
23
Documentation = " https://wtforms.readthedocs.io"
24
24
Changes = " https://wtforms.readthedocs.io/changes"
25
- "Source Code" = " https://github.com/wtforms /wtforms/"
26
- "Issue Tracker" = " https://github.com/wtforms /wtforms/issues"
25
+ "Source Code" = " https://github.com/pallets-eco /wtforms/"
26
+ "Issue Tracker" = " https://github.com/pallets-eco /wtforms/issues"
27
27
Chat = " https://discord.gg/pallets"
28
28
29
29
[project .optional-dependencies ]
You can’t perform that action at this time.
0 commit comments