Skip to content

Commit 389cd47

Browse files
nyeshlurlwasser
authored andcommitted
Update installable-code.md
1 parent 6529ab5 commit 389cd47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/installable-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,14 +379,14 @@ path = "src/pyospackage/__about__.py"
379379
Edit the file as follows:
380380

381381
1. Delete `dynamic = ["version"]`: This sets up dynamic versioning based on tags stored in your git commit history. We will walk through implementing this in a later lesson.
382-
2. Add `version = 0.1.0` in the place of `dynamic = ["version"]` which you just deleted. This sets up manual versioning.
382+
2. Add `version = "0.1.0"` in the place of `dynamic = ["version"]` which you just deleted. This sets up manual versioning.
383383
3. Fill in the description if it doesn't already exist.
384384

385385
```toml
386386
[project]
387387
name = "pyospackage"
388388
# dynamic = ["version"] <- replace this...
389-
version = 0.1 # with this
389+
version = "0.1" # with this
390390
description = 'A simple Python package that adds numbers together' # Add a description of your package if that is not already populated
391391
```
392392

0 commit comments

Comments
 (0)