Skip to content

Commit 9e02cda

Browse files
committed
Fix: rename 1-installable to installable-code
1 parent b9eab91 commit 9e02cda

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ by the community now! Join our community review process or watch development of
7171
:class-card: left-aligned
7272

7373
* [What is a Python package?](/tutorials/intro)
74-
* [Make your code installable](/tutorials/1-installable-code)
74+
* [Make your code installable](/tutorials/installable-code)
7575
* [Publish your package to (test) PyPi](/tutorials/publish-pypi)
7676
* [Publish your package to conda-forge](/tutorials/publish-conda-forge)
7777

tutorials/add-license-coc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ There are several ways to add a LICENSE file:
6262
:::{tip}
6363
If you completed the past lessons including
6464

65-
1. [Making your code installable](1-installable-code.md) and
65+
1. [Making your code installable](installable-code.md) and
6666
2. [publishing your package to PyPI](publish-pypi.md)
6767

6868
then you already have a **LICENSE** file containing text for the MIT license in your Python package. Thus you can skip to the next section of this tutorial which walks you through adding a CODE_OF_CONDUCT.

tutorials/add-readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
In the previous lessons you learned:
44

55
1. [What a Python package is](intro.md)
6-
2. [How to make your code installable](1-installable-code)
6+
2. [How to make your code installable](installable-code)
77
3. [How to publish your package to (test) PyPI](publish-pypi.md)
88
4. [How to publish your package to conda-forge](publish-conda-forge.md)
99

File renamed without changes.

tutorials/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Get to know Hatch <get-to-know-hatch>
3636
:caption: Create and publish a Python Package
3737

3838
What is a Python package? <self>
39-
Make your code installable <1-installable-code>
39+
Make your code installable <installable-code>
4040
Publish to PyPI <publish-pypi>
4141
Publish to conda-forge <publish-conda-forge>
4242
:::
@@ -346,5 +346,5 @@ The elements above are also important for future maintenance of your package. In
346346
In future lessons you will learn more about the infrastructure around a published Python package that makes it both easier to maintain, easier for others to contribute to and easier for other scientists to use. However, first we want to get you to your initial goal of publishing a Python package.
347347

348348
In this next lesson you will learn how to create a basic installable Python package.
349-
Make your code pip installable <1-installable-code>
349+
Make your code pip installable <installable-code>
350350
:::

tutorials/publish-conda-forge.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
In the previous lessons, you've learned:
44

5-
1. How to [create the most basic version of a Python package](1-installable-code.md). This entailed making your code installable.
5+
1. How to [create the most basic version of a Python package](installable-code.md). This entailed making your code installable.
66
2. [How to publish your Python package to PyPI](publish-pypi)
77
3. How to add a `README` and `LICENSE` file to your package
88
4. How to setup your `pyproject.toml` file with all of the metadata that PyPI requires and also metadata that will be helpful for users to find your package.
@@ -464,7 +464,7 @@ Review the pull request. If all tests are passing, you can merge it. Shortly aft
464464
If you have walked through this entire tutorial series you have now:
465465

466466
1. Understand [what a Python package is ](intro.md)
467-
2. Know how to [make your code installable](1-installable-code.md) into Python environments
467+
2. Know how to [make your code installable](installable-code.md) into Python environments
468468
3. Know how to create a pyproject.toml file, a README file, and a License and code of conduct.
469469
4. Know how to [publish your package to PyPI](publish-pypi.md) and
470470
5. Know how to publish your package to conda-forge

tutorials/publish-pypi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Once you have your development environment setup, you are ready to build your pa
167167

168168
You will use Hatch as a **Front end** tool that builds
169169
your package's sdist and wheel using the [hatchling](https://hatch.pypa.io/latest/) build back-end.
170-
The hatchling build back-end is used because you declared it in your pyproject.toml file in the [previous lesson](1-installable-code).
170+
The hatchling build back-end is used because you declared it in your pyproject.toml file in the [previous lesson](installable-code).
171171

172172
To build your package run `hatch build`:
173173

tutorials/pyproject-toml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Make your Python package PyPI ready - pyproject.toml
22

3-
In [the installable code lesson](1-installable-code), you learned how to add the bare minimum information to a `pyproject.toml` file to make it installable. You then learned how to [publish a bare minimum version of your package to PyPI](publish-pypi.md).
3+
In [the installable code lesson](installable-code), you learned how to add the bare minimum information to a `pyproject.toml` file to make it installable. You then learned how to [publish a bare minimum version of your package to PyPI](publish-pypi.md).
44

55
Following that you learned how to add a:
66
* [README.md](add-readme)
@@ -156,7 +156,7 @@ The documentation for the hatchling back-end is [here](https://hatch.pypa.io/lat
156156

157157
### Step 1: Add Author, maintainer and project description
158158

159-
After completing the [installable code tutorial](1-installable-code), you should have a pyproject.toml file with a project name and a version in the `[project]` table.
159+
After completing the [installable code tutorial](installable-code), you should have a pyproject.toml file with a project name and a version in the `[project]` table.
160160

161161
```toml
162162
[project]

0 commit comments

Comments
 (0)