Skip to content

Commit 9130173

Browse files
authored
Merge pull request #262 from pb-413/consistency-installable-code-version-number
update version from 0.1.0 to 0.1
2 parents a9fc8c1 + bf78815 commit 9130173

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tutorials/installable-code.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ path = "src/pyospackage/__about__.py"
390390
Edit the file as follows:
391391

392392
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.
393-
2. Add `version = "0.1.0"` in the place of `dynamic = ["version"]` which you just deleted. This sets up manual versioning.
393+
2. Add `version = "0.1"` in the place of `dynamic = ["version"]` which you just deleted. This sets up manual versioning.
394394
3. Fill in the description if it doesn't already exist.
395395

396396
```toml
@@ -449,7 +449,7 @@ build-backend = "hatchling.build"
449449

450450
[project]
451451
name = "pyospackage"
452-
version = "0.1.0"
452+
version = "0.1"
453453
description = 'A python package that adds numbers together.'
454454
readme = "README.md"
455455
requires-python = ">=3.9"
@@ -577,7 +577,7 @@ nox 2021.10.1
577577
numpy 1.24.2
578578
packaging 23.0
579579
pandas 1.5.3
580-
pyosPackage 0.1.0 /Users/yourusername/path/here/pyosPackage
580+
pyosPackage 0.1 /Users/yourusername/path/here/pyosPackage
581581
...
582582
...
583583
...

0 commit comments

Comments
 (0)