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
Copy file name to clipboardExpand all lines: episodes/6_extra.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,12 +7,16 @@ exercises: 5
7
7
:::::::::::::::::::::::::::::::::::::: questions
8
8
9
9
- How can we use `pixi run start`?
10
+
- How to yank or un-yank a release?
11
+
- How to automatically version and store your releases from via Codespaces
10
12
11
13
::::::::::::::::::::::::::::::::::::::::::::::::
12
14
13
15
::::::::::::::::::::::::::::::::::::: objectives
14
16
15
17
- Learn how to use Pixi to run your project.
18
+
- Learn how to make a release unavialable or undo that.
19
+
- Learn how to use dynamic versioing and release from via codespaces.
16
20
17
21
::::::::::::::::::::::::::::::::::::::::::::::::
18
22
@@ -49,6 +53,31 @@ This command will:
49
53
This provides a convenient and reproducible way to launch your project without needing to manually manage dependencies or commands.
50
54
You can check the example project [here](https://github.com/priya-gitTest/greet_me)
51
55
56
+
## Yank and Un-yank
57
+
Occasionally, a release may contain an error or be uploaded by mistake. While PyPI and TestPyPI don’t allow deleting releases for security and reproducibility reasons, you can mark a specific version as yanked.
58
+
Yanked releases remain accessible for reproducibility but are ignored by default when users install packages with `pip install <package-name>`
59
+
60
+
Steps to Yank a version of your Python Package :
61
+
- Log into your PyPI or TestPyPI account
62
+
- Click on the Your Projects from the top righlocation user your user name.
0 commit comments