File: development.rst

package info (click to toggle)
python-greenlet 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,032 kB
  • sloc: cpp: 5,045; python: 3,160; ansic: 1,125; makefile: 155; asm: 120; sh: 42
file content (30 lines) | stat: -rw-r--r-- 736 bytes parent folder | download | duplicates (2)
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.