We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc9500f commit 55c12ddCopy full SHA for 55c12dd
2 files changed
.github/workflows/release.yml
@@ -65,12 +65,11 @@ jobs:
65
66
- name: Build source distribution
67
run: |
68
- python -m pip install --upgrade pip setuptools wheel build
+ python -m pip install --upgrade pip setuptools wheel build twine
69
python -m build --sdist --outdir sdist
70
71
- name: Publish wheels and source distribution to PyPI
72
73
- python -m pip install --upgrade pip setuptools wheel twine
74
twine upload sdist/*.tar.gz
75
# twine upload wheels/*.whl sdist/*.tar.gz
76
env:
arraydeque.c
@@ -4,7 +4,7 @@
4
#include <stddef.h> /* for offsetof */
5
6
#ifndef ARRAYDEQUE_VERSION
7
-#define ARRAYDEQUE_VERSION "1.2.7"
+#define ARRAYDEQUE_VERSION "1.2.8"
8
#endif
9
10
/* The ArrayDeque object structure. */
0 commit comments