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: docs/tech_notes.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,19 @@ subsequent attempts have an unclear effect, possibly none
112
112
Your branch is up to date with 'origin/testing'.
113
113
```
114
114
115
-
subsequent attempts are
115
+
`make release` never seems to complete. At best it created some wheels with commit hashs such as `refcount-1.2.7.abedeff12456.tar.gz` of something like that and pypi refuses to let them be uploaded.
116
+
117
+
I ended up having to delete tags and doing:
118
+
119
+
```sh
120
+
# add and commit
121
+
git tag v1.2.7
122
+
make build
123
+
```
124
+
125
+
creates files `refcount-1.2.7-py3-none-any.whl refcount-1.2.7.tar.gz` which look suitable for upload to pypi.
126
+
127
+
Yup, `✓ Publishing source and wheel distributions to PyPI`
0 commit comments