File: development.rst

package info (click to toggle)
python-greenlet 3.2.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,096 kB
  • sloc: cpp: 5,078; python: 3,197; ansic: 1,129; makefile: 145; asm: 120; sh: 72
file content (30 lines) | stat: -rw-r--r-- 736 bytes parent folder | download | duplicates (3)
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.