Skip to content

Fix: update create package url #674

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _pages/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion _posts/2024-08-30-pyopensci-monumental-growth-2024.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion _tutorials/2-make-code-installable.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---