diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2021-01-22 12:11:24 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-01-25 14:34:06 -0800 |
| commit | cc1290421086cb74f436e71158e31ccf3205acd0 (patch) | |
| tree | 807dc1860a39f24d810051067763e31e6a7635a5 /meta-python/recipes-devtools/python/python3-pyzmq_20.0.0.bb | |
| parent | 74269b3f8e9a02dcb01acdc8d12a59242a3422da (diff) | |
| download | meta-openembedded-cc1290421086cb74f436e71158e31ccf3205acd0.tar.gz | |
python3-pyzmq: Upgrade 20.0.0 -> 21.0.1
Upgrade to release 21.0.1:
- drop support for Python 3.5. Python >= 3.6 is required
- mypy type stubs, which should improve static analysis of pyzmq,
especially for dynamically defined attributes such as zmq
constants. These are new! Let us know if you find any issues.
- support for zero-copy and sending bufferables with cffi backend.
This is experimental! Please report issues.
- zero-copy support in CFFI backend (send(copy=False) now does
something).
- Support sending any buffer-interface-providing objects in CFFI
backend.
- Errors during teardown of asyncio Sockets
- Missing MSVCP140.dll in Python 3.9 wheels on Windows, causing
vcruntime-redist package to be required to use the Python 3.9
wheels for pyzmq 20.0
- pyzmq-21.0.1 only changes CI configuration for Windows wheels
(built with VS2017 instead of VS2019), fixing compatibility with
some older Windows on all Pythons and removing requirement of
VC++ redistributable package on latest Windows and Python < 3.8.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pyzmq_20.0.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pyzmq_20.0.0.bb | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyzmq_20.0.0.bb b/meta-python/recipes-devtools/python/python3-pyzmq_20.0.0.bb deleted file mode 100644 index a668eb11e2..0000000000 --- a/meta-python/recipes-devtools/python/python3-pyzmq_20.0.0.bb +++ /dev/null | |||
| @@ -1,26 +0,0 @@ | |||
| 1 | SUMMARY = "Pyzmq provides Zero message queue access for the Python language" | ||
| 2 | HOMEPAGE = "http://zeromq.org/bindings:python" | ||
| 3 | LICENSE = "BSD & LGPL-3.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING.BSD;md5=11c65680f637c3df7f58bbc8d133e96e \ | ||
| 5 | file://COPYING.LESSER;md5=12c592fa0bcfff3fb0977b066e9cb69e" | ||
| 6 | DEPENDS = "zeromq" | ||
| 7 | |||
| 8 | FILESEXTRAPATHS_prepend := "${THISDIR}/python-pyzmq:" | ||
| 9 | |||
| 10 | SRC_URI += "file://club-rpath-out.patch" | ||
| 11 | SRC_URI[sha256sum] = "824ad5888331aadeac772bce27e1c2fbcab82fade92edbd234542c4e12f0dca9" | ||
| 12 | |||
| 13 | inherit pypi pkgconfig setuptools3 | ||
| 14 | |||
| 15 | RDEPENDS_${PN} += "${PYTHON_PN}-multiprocessing" | ||
| 16 | |||
| 17 | FILES_${PN}-dbg =+ "${PYTHON_SITEPACKAGES_DIR}/zmq/backend/cython/.debug" | ||
| 18 | |||
| 19 | do_compile_prepend() { | ||
| 20 | echo [global] > ${S}/setup.cfg | ||
| 21 | echo zmq_prefix = ${STAGING_DIR_HOST} >> ${S}/setup.cfg | ||
| 22 | echo have_sys_un_h = True >> ${S}/setup.cfg | ||
| 23 | echo skip_check_zmq = True >> ${S}/setup.cfg | ||
| 24 | echo libzmq_extension = False >> ${S}/setup.cfg | ||
| 25 | echo no_libzmq_extension = True >> ${S}/setup.cfg | ||
| 26 | } | ||
