f56173956b
What's new in version 0.18.2: ============================= This is a minor bug-fix release containing a number of fixes: - Fix min/max functions with generators, and 'None' default - Use BaseException in raise_() - Fix builtins.round() for Decimals - Fix raise_from() to prevent failures with immutable classes - Make FixInput idempotent - Fix type in newround - Support mimetype guessing in urllib2 for Py3.8+ Python 3.8 is not yet officially supported. What's new in version 0.18.1: ============================= This is a minor bug-fix release containing a fix for raise_() when passed an exception that's not an Exception (e.g. BaseException subclasses) What's new in version 0.18.0: ============================= This is a major bug-fix and feature release, including: - Fix collections.abc import for py38+ - Remove import for isnewbytes() function, reducing CPU cost significantly - Fix bug with importing past.translation when importing past which breaks zipped python installations - Fix an issue with copyreg import under Py3 that results in unexposed stdlib functionality - Export and document types in future.utils - Update behavior of newstr.__eq__() to match str.__eq__() as per reference docs - Fix raising and the raising fixer to handle cases where the syntax is ambigious - Allow "default" parameter in min() and max() - Implement __hash__() in newstr - Future proof some version checks to handle the fact that Py4 won't be a major breaking release - Fix urllib.request imports for Python 3.8 compatibility - Fix future import ordering - Fixed bug in fix_division_safe fixture - Do not globally destroy re.ASCII in PY3 - Fix a bug in email.Message.set_boundary() - Implement format_map() in str - Implement readinto() for socket.fp As well as a number of corrections to a variety of documentation, and updates to test infrastructure.
21 lines
561 B
Makefile
21 lines
561 B
Makefile
# $NetBSD: Makefile,v 1.6 2019/12/14 10:58:37 adam Exp $
|
|
|
|
DISTNAME= future-0.18.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=f/future/}
|
|
|
|
MAINTAINER= gde@llew.me
|
|
#HOMEPAGE= https://python-future.org/
|
|
COMMENT= Clean single-source support for Python 3 and 2
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} futurize futurize-${PYVERSSUFFIX} && \
|
|
${MV} pasteurize pasteurize-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|