Skip to content

Commit 2e41f76

Browse files
lwasserucodery
andcommitted
Fix: Edits from @ucodery
Co-authored-by: Jeremy Paige <ucodery@gmail.com> Update tutorials/1-installable-code.md Co-authored-by: Jeremy Paige <ucodery@gmail.com>
1 parent 7575271 commit 2e41f76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/1-installable-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ build-backend = "hatchling.build"
320320
name = "pyospackage_gh_user_name" # rename this if you plan to publish to test PyPI
321321
# Here you add the package version manually.
322322
# You will learn how to setup dynamic versioning in a followup tutorial.
323-
version="1.1"
323+
version = "1.1"
324324

325325
```
326326

@@ -331,7 +331,7 @@ version using git tags in the version and release your package lesson. <ADD LINK
331331
:::{admonition} The bare minimum needed in a pyproject.toml file
332332
:class: tip
333333

334-
The core basic information that you need in a `pyproject.toml` file in order to publish on PyPI is your **package's name** and the **version**. However, we suggest that you flesh out your metadata early on in the `pyproject.toml` file.
334+
The core information that you need in a `pyproject.toml` file in order to publish on PyPI is your **package's name** and the **version**. However, we suggest that you flesh out your metadata early on in the `pyproject.toml` file.
335335

336336
Once you have your project metadata in the pyproject.toml file, you will
337337
rarely update it. In the next lesson you’ll add more metadata and structure to this file.

0 commit comments

Comments
 (0)