diff options
| author | Alexey Borzenkov <snaury@gmail.com> | 2020-09-22 12:03:52 +0300 |
|---|---|---|
| committer | Alexey Borzenkov <snaury@gmail.com> | 2020-09-22 12:03:52 +0300 |
| commit | 084f0a412cee00dacbbd20a18758a04da07dc29e (patch) | |
| tree | 2a6449bddc18b5060555f6e6f98ad221cc8b6495 | |
| parent | f49eb7be1cb43d53a80c2447a419d69db377c825 (diff) | |
| download | greenlet-release-0.4.17.tar.gz | |
Prepare to release greenlet 0.4.17release-0.4.17
| -rw-r--r-- | MANIFEST.in | 1 | ||||
| -rw-r--r-- | NEWS | 4 | ||||
| -rw-r--r-- | appveyor.yml | 2 | ||||
| -rw-r--r-- | greenlet.h | 2 | ||||
| -rwxr-xr-x | setup.py | 4 |
5 files changed, 8 insertions, 5 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 8cd3d1e..23d388f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -51,6 +51,7 @@ include slp_platformselect.h include tests/__init__.py include tests/_test_extension.c include tests/_test_extension_cpp.cpp +include tests/test_contextvars.py include tests/test_cpp.py include tests/test_extension_interface.py include tests/test_gc.py @@ -1,3 +1,7 @@ +0.4.17 +====== +- Support for PEP 567 ContextVars + 0.4.16 =========== - Support for DEC Alpha architecture diff --git a/appveyor.yml b/appveyor.yml index 527c488..0dc45df 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 0.4.16.{build} +version: 0.4.17.{build} environment: global: # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the @@ -11,7 +11,7 @@ extern "C" { #endif -#define GREENLET_VERSION "0.4.16" +#define GREENLET_VERSION "0.4.17" #if PY_VERSION_HEX >= 0x030700A3 # define GREENLET_USE_EXC_INFO @@ -70,11 +70,9 @@ from my_build_ext import build_ext setup( name="greenlet", - version='0.4.16', + version='0.4.17', description='Lightweight in-process concurrent programming', long_description=readfile("README.rst"), - maintainer="Alexey Borzenkov", - maintainer_email="snaury@gmail.com", url="https://github.com/python-greenlet/greenlet", license="MIT License", platforms=['any'], |
