File tree 3 files changed +17
-0
lines changed
3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 71
71
# Don't release when running the workflow manually from GitHub's UI.
72
72
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
73
73
permissions :
74
+ id-token : write
75
+ attestations : write
74
76
contents : write
75
77
steps :
76
78
- name : Download artifacts
79
81
pattern : dist-*
80
82
merge-multiple : true
81
83
path : dist
84
+ - name : Attest provenance
85
+ uses : actions/attest-build-provenance@v1
86
+ with :
87
+ subject-path : dist/*
82
88
- name : Upload to PyPI
83
89
uses : pypa/gh-action-pypi-publish@release/v1
84
90
- name : Create GitHub release
Original file line number Diff line number Diff line change 1
1
include LICENSE
2
2
include src/websockets/py.typed
3
+ include src/websockets/speedups.c # required when BUILD_EXTENSION=no
Original file line number Diff line number Diff line change @@ -56,6 +56,16 @@ New features
56
56
* Made the set of active connections available in the :attr: `Server.connections
57
57
<asyncio.server.Server.connections> ` property.
58
58
59
+ 13.0.1
60
+ ------
61
+
62
+ *August 28, 2024 *
63
+
64
+ Bug fixes
65
+ .........
66
+
67
+ * Restored the C extension in the source distribution.
68
+
59
69
.. _13.0 :
60
70
61
71
13.0
You can’t perform that action at this time.
0 commit comments