From 0928af73f02076ba84d098e6a40a1827de2859a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Sat, 12 Oct 2024 13:30:11 +0200 Subject: [PATCH] chore: move the project to the pallets-eco organization --- CONTRIBUTING.rst | 4 ++-- README.rst | 4 ++-- docs/changes.rst | 7 +++++++ docs/conf.py | 6 +++--- docs/form.rst | 2 +- docs/install.rst | 8 ++++---- pyproject.toml | 4 ++-- 7 files changed, 21 insertions(+), 14 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 41523a39..b93ddcb8 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -83,7 +83,7 @@ First time setup .. code-block:: text - $ git clone https://github.com/wtforms/flask-wtf + $ git clone https://github.com/pallets-eco/flask-wtf $ cd flask-wtf - Add your fork as a remote to push your work to. Replace @@ -130,7 +130,7 @@ First time setup .. _username: https://docs.github.com/en/github/using-git/setting-your-username-in-git .. _email: https://docs.github.com/en/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address .. _GitHub account: https://github.com/join -.. _Fork: https://github.com/wtforms/flask-wtf/fork +.. _Fork: https://github.com/pallets-eco/flask-wtf/fork .. _Clone: https://docs.github.com/en/github/getting-started-with-github/fork-a-repo#step-2-create-a-local-clone-of-your-fork diff --git a/README.rst b/README.rst index 5f69eb48..fbbd9239 100644 --- a/README.rst +++ b/README.rst @@ -10,6 +10,6 @@ Links - Documentation: https://flask-wtf.readthedocs.io/ - Changes: https://flask-wtf.readthedocs.io/changes/ - PyPI Releases: https://pypi.org/project/Flask-WTF/ -- Source Code: https://github.com/wtforms/flask-wtf/ -- Issue Tracker: https://github.com/wtforms/flask-wtf/issues/ +- Source Code: https://github.com/pallets-eco/flask-wtf/ +- Issue Tracker: https://github.com/pallets-eco/flask-wtf/issues/ - Chat: https://discord.gg/pallets diff --git a/docs/changes.rst b/docs/changes.rst index db77082e..ab22c836 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,13 @@ Changes ======= +Version 1.x.x +------------- + +Unreleased + +- Move the project to the pallets-eco organization. :pr:`602` + Version 1.2.1 ------------- diff --git a/docs/conf.py b/docs/conf.py index bd37efab..e7eb42c8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ "flask": ("https://flask.palletsprojects.com/", None), "wtforms": ("https://wtforms.readthedocs.io/", None), } -issues_github_path = "wtforms/flask-wtf" +issues_github_path = "pallets-eco/flask-wtf" # HTML ----------------------------------------------------------------- @@ -32,8 +32,8 @@ html_context = { "project_links": [ ProjectLink("PyPI Releases", "https://pypi.org/project/Flask-WTF/"), - ProjectLink("Source Code", "https://github.com/wtforms/flask-wtf/"), - ProjectLink("Issue Tracker", "https://github.com/wtforms/flask-wtf/issues/"), + ProjectLink("Source Code", "https://github.com/pallets-eco/flask-wtf/"), + ProjectLink("Issue Tracker", "https://github.com/pallets-eco/flask-wtf/issues/"), ProjectLink("Chat", "https://discord.gg/pallets"), ] } diff --git a/docs/form.rst b/docs/form.rst index b7edfe14..9a6dface 100644 --- a/docs/form.rst +++ b/docs/form.rst @@ -182,4 +182,4 @@ And it can be easily setup in the templates: We have an example for you: `recaptcha@github`_. -.. _`recaptcha@github`: https://github.com/wtforms/flask-wtf/tree/main/examples/recaptcha +.. _`recaptcha@github`: https://github.com/pallets-eco/flask-wtf/tree/main/examples/recaptcha diff --git a/docs/install.rst b/docs/install.rst index 40fdaf55..f2c547d3 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -19,12 +19,12 @@ Development The latest code is available from `GitHub`_. Clone the repository then install using pip. :: - git clone https://github.com/wtforms/flask-wtf + git clone https://github.com/pallets-eco/flask-wtf pip install -e ./flask-wtf Or install the latest build from an `archive`_. :: - pip install -U https://github.com/wtforms/flask-wtf/archive/main.tar.gz + pip install -U https://github.com/pallets-eco/flask-wtf/archive/main.tar.gz -.. _GitHub: https://github.com/wtforms/flask-wtf -.. _archive: https://github.com/wtforms/flask-wtf/archive/main.tar.gz +.. _GitHub: https://github.com/pallets-eco/flask-wtf +.. _archive: https://github.com/pallets-eco/flask-wtf/archive/main.tar.gz diff --git a/pyproject.toml b/pyproject.toml index ba5d915f..47c37bf0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,8 +27,8 @@ dynamic = ["version"] [project.urls] Documentation = "https://flask-wtf.readthedocs.io/" Changes = "https://flask-wtf.readthedocs.io/changes/" -"Source Code" = "https://github.com/wtforms/flask-wtf/" -"Issue Tracker" = "https://github.com/wtforms/flask-wtf/issues/" +"Source Code" = "https://github.com/pallets-eco/flask-wtf/" +"Issue Tracker" = "https://github.com/pallets-eco/flask-wtf/issues/" Chat = "https://discord.gg/pallets" [project.optional-dependencies]