diff options
| author | Alexey Borzenkov <snaury@gmail.com> | 2020-06-05 10:40:29 +0300 |
|---|---|---|
| committer | Alexey Borzenkov <snaury@gmail.com> | 2020-06-05 11:03:26 +0300 |
| commit | c677d8860c37f6c418c55aaa8a21f4bdc7dfc377 (patch) | |
| tree | 3cfc842749d088fc3044a317f7e4cf226491f541 | |
| parent | e1bc37edc13ba90948f86b9969a870287ec591f4 (diff) | |
| download | greenlet-release-0.4.16.tar.gz | |
Prepare to release greenlet 0.4.16release-0.4.16
| -rw-r--r-- | MANIFEST.in | 1 | ||||
| -rw-r--r-- | NEWS | 3 | ||||
| -rw-r--r-- | greenlet.h | 2 | ||||
| -rwxr-xr-x | setup.py | 3 |
4 files changed, 6 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 01d177c..8cd3d1e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -22,6 +22,7 @@ include make-manylinux include make-win-release include my_build_ext.py include platform/switch_aarch64_gcc.h +include platform/switch_alpha_unix.h include platform/switch_amd64_unix.h include platform/switch_arm32_gcc.h include platform/switch_arm32_ios.h @@ -1,7 +1,8 @@ -0.4.16-dev +0.4.16 =========== - Support for DEC Alpha architecture - Support for Python 3.9 +- Support for Python 3.10a0 0.4.15 =========== @@ -11,7 +11,7 @@ extern "C" { #endif -#define GREENLET_VERSION "0.4.16.dev" +#define GREENLET_VERSION "0.4.16" #if PY_VERSION_HEX >= 0x030700A3 # define GREENLET_USE_EXC_INFO @@ -70,7 +70,7 @@ from my_build_ext import build_ext setup( name="greenlet", - version='0.4.16.dev', + version='0.4.16', description='Lightweight in-process concurrent programming', long_description=readfile("README.rst"), maintainer="Alexey Borzenkov", @@ -102,6 +102,7 @@ setup( 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries :: Python Modules'], **setuptools_args) |
