Skip to content

Commit c025a88

Browse files
authored
Merge pull request #854 from azmeuk/pallets-eco
move wtforms to the pallets-eco organization
2 parents 1c84a9c + 06f6677 commit c025a88

8 files changed

+24
-23
lines changed

CHANGES.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Released 2024-01-06
77

88
- Fix :class:`~fields.SelectMultipleField` value coercion on validation.
99
:issue:`822` :pr:`823`
10+
- Move the repository to the pallets-eco organization.
1011

1112
Version 3.1.1
1213
-------------

README.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ with frameworks even better.
4848

4949
.. _Flask-WTF: https://flask-wtf.readthedocs.io/
5050
.. _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
5454
.. _WTForms-Bootstrap5: https://github.com/LaunchPlatform/wtforms-bootstrap5
5555
.. _Starlette-WTF: https://github.com/muicss/starlette-wtf
5656
.. _Bootstrap-Flask: https://github.com/helloflask/bootstrap-flask
@@ -61,7 +61,7 @@ Links
6161

6262
- Documentation: https://wtforms.readthedocs.io/
6363
- 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
6666
- 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/

docs/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@
2222
intersphinx_mapping = {
2323
"python": ("https://docs.python.org/3/", None),
2424
}
25-
issues_github_path = "wtforms/wtforms"
25+
issues_github_path = "pallets-eco/wtforms"
2626

2727
# HTML -----------------------------------------------------------------
2828

2929
html_theme = "werkzeug"
3030
html_context = {
3131
"project_links": [
3232
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/"),
3434
ProjectLink(
3535
"Discord Chat",
3636
"https://discord.gg/F65P7Z9",
3737
),
38-
ProjectLink("Issue Tracker", "https://github.com/wtforms/wtforms/issues/"),
38+
ProjectLink("Issue Tracker", "https://github.com/pallets-eco/wtforms/issues/"),
3939
]
4040
}
4141
html_sidebars = {

docs/contributing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ How to Contribute
1212
WTForms is now on `GitHub`_, so all contributions should be either associated
1313
with a pull request or with a ticket & patch.
1414

15-
.. _GitHub: https://github.com/wtforms/wtforms
15+
.. _GitHub: https://github.com/pallets-eco/wtforms
1616

1717

1818
Contribution Guidelines
@@ -38,7 +38,7 @@ Code submitted should:
3838
advantage of `Github Actions`_ for running tests on all supported Python
3939
versions.
4040

41-
.. _Github Actions: https://github.com/wtforms/wtforms/actions
41+
.. _Github Actions: https://github.com/pallets-eco/wtforms/actions
4242
.. _PEP8: https://www.python.org/dev/peps/pep-0008/
4343

4444

docs/ext.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Extensions
55

66
All WTForms extensions were removed in WTForms 3.0.
77

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>`_
99
* ``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>`_
1111
* ``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>`_

docs/faq.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ but if it's not listed, it doesn't mean it won't work.
3737
Special support is there for `SQLAlchemy`_, `Google App Engine`_, and `Django`_
3838
collections via companion packages.
3939

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
4444

4545
Does WTForms support unicode?
4646
-----------------------------
@@ -67,7 +67,7 @@ WTForms is not that scary. Really. We try to keep it as succinct and readable as
6767
possible. For bugs and feature requests, you can file a
6868
ticket on the `project page`_.
6969

70-
.. _project page: https://github.com/wtforms/wtforms
70+
.. _project page: https://github.com/pallets-eco/wtforms
7171

7272

7373
How do I mark in a template when a field is required?

docs/whats_new.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ the new API's unless it needs to work across both WTForms 1.x and 2.x
6868

6969
.. _WTForms-Alchemy: https://pypi.org/project/WTForms-Alchemy/
7070
.. _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
7373

7474

7575
Low-level Changes

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ dynamic = ["version"]
2222
[project.urls]
2323
Documentation = "https://wtforms.readthedocs.io"
2424
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"
2727
Chat = "https://discord.gg/pallets"
2828

2929
[project.optional-dependencies]

0 commit comments

Comments
 (0)