blob: 651924ab0d89c3f075a8606c1edfb4615556035e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
=====================
Development Process
=====================
This document is a collection of notes about how greenlet is
developed.
Github
======
The primary development location for greenlet is GitHub:
https://github.com/python-greenlet/greenlet/
Releases
========
greenlet uses Semantic Versions; this includes changes to the ABI
(breaking the ABI is considered a major change).
Releases are made using `zest.releaser
<https://zestreleaser.readthedocs.io/en/latest/>`_.
.. code-block:: shell
$ pip install zest.releaser[recommended]
$ fullrelease
Binary wheels are created and uploaded to PyPI for Windows, macOS, and
Linux (x86_64 and aarch64) when a tag is pushed to the repository.
The above command does this.
|