From 5d7f82d202345d97aaafbcf6d07cc240d6a75b50 Mon Sep 17 00:00:00 2001 From: Leah Wasser Date: Fri, 11 Jul 2025 12:58:52 -0700 Subject: [PATCH] Fix: update create package url --- _pages/home.md | 2 +- _posts/2024-08-30-pyopensci-monumental-growth-2024.md | 2 +- _posts/2025-03-05-pyOpenSci-first-open-science-festival.md | 2 +- _tutorials/2-make-code-installable.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_pages/home.md b/_pages/home.md index 47b71c14..2155844e 100644 --- a/_pages/home.md +++ b/_pages/home.md @@ -13,7 +13,7 @@ header: - label: "Submit a Package For Review" url: "https://www.pyopensci.org/how-to-submit-a-package-to-pyopensci.html" - label: "Learn to Create a Python Package" - url: "https://www.pyopensci.org/python-package-guide/tutorials/installable-code.html" + url: "https://www.pyopensci.org/python-package-guide/tutorials/create-python-package.html" mission: - excerpt: "pyOpenSci broadens participation in scientific open source by breaking down social and technical barriers. Join our global community." peer-review: diff --git a/_posts/2024-08-30-pyopensci-monumental-growth-2024.md b/_posts/2024-08-30-pyopensci-monumental-growth-2024.md index c97c244f..3d482f86 100644 --- a/_posts/2024-08-30-pyopensci-monumental-growth-2024.md +++ b/_posts/2024-08-30-pyopensci-monumental-growth-2024.md @@ -178,7 +178,7 @@ hope that this will make packaging less confusing and more accessible to more pe In addition to the ecosystem overview provided in the guide, I knew that we needed to have opinionated, complete Python packaging tutorials that guided users through the entire packaging process including: -* [creating a package](https://www.pyopensci.org/python-package-guide/tutorials/installable-code.html), +* [creating a package](https://www.pyopensci.org/python-package-guide/tutorials/create-python-package.html), * publishing it on [PyPI](https://www.pyopensci.org/python-package-guide/tutorials/publish-pypi.html), and * [conda-forge](https://www.pyopensci.org/python-package-guide/tutorials/publish-conda-forge.html). diff --git a/_posts/2025-03-05-pyOpenSci-first-open-science-festival.md b/_posts/2025-03-05-pyOpenSci-first-open-science-festival.md index e4e00ff4..f1ad8b15 100644 --- a/_posts/2025-03-05-pyOpenSci-first-open-science-festival.md +++ b/_posts/2025-03-05-pyOpenSci-first-open-science-festival.md @@ -161,7 +161,7 @@ On Day 2, participants learned how to turn their code into reusable, installable The packaging day covered: - [An overview of Python packaging for beginners](https://www.pyopensci.org/python-package-guide/tutorials/intro.html#what-is-a-python-package), -- Making code [installable in Python environments](https://www.pyopensci.org/python-package-guide/tutorials/installable-code.html) with tools like [Hatch](https://www.pyopensci.org/python-package-guide/tutorials/get-to-know-hatch.html), +- Making code [installable in Python environments](https://www.pyopensci.org/python-package-guide/tutorials/create-python-package.html) with tools like [Hatch](https://www.pyopensci.org/python-package-guide/tutorials/get-to-know-hatch.html), - Adding package metadata using a [pyproject.toml file](https://www.pyopensci.org/python-package-guide/tutorials/pyproject-toml.html), - Including a [license](https://www.pyopensci.org/python-package-guide/tutorials/add-license-coc.html) to define how others can use and share your Python package. diff --git a/_tutorials/2-make-code-installable.md b/_tutorials/2-make-code-installable.md index 2d1939be..15172c00 100644 --- a/_tutorials/2-make-code-installable.md +++ b/_tutorials/2-make-code-installable.md @@ -4,7 +4,7 @@ excerpt: " Learn how to create the most basic version of a Python package which can then be installed into a Python environment." learning_objectives: - "Understand what a Python package is" -link: https://www.pyopensci.org/python-package-guide/tutorials/installable-code.html +link: https://www.pyopensci.org/python-package-guide/tutorials/create-python-package.html btn_label: View Tutorial btn_class: btn--success btn--large ---