You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
383
383
3. Fill in the description if it doesn't already exist.
384
384
385
385
```toml
386
386
[project]
387
387
name = "pyospackage"
388
388
# dynamic = ["version"] <- replace this...
389
-
version = 0.1# with this
389
+
version = "0.1"# with this
390
390
description = 'A simple Python package that adds numbers together'# Add a description of your package if that is not already populated
0 commit comments