- Fixed issue with legacy python 2.7 and 3.5. Fixes [110](https://github.com/smarie/python-makefun/issues/110)
1.15.5
- This version was yanked as the fix declared in the changelog was not actually active on the version deployed on PyPi
1.15.4 - Python 3.13 official support
- Python 3.13 is now supported. PR [108](https://github.com/smarie/python-makefun/pull/108) and PR [104](https://github.com/smarie/python-makefun/pull/104) by [mgorny](https://github.com/mgorny)
1.15.3
- Fixed `SyntaxError: invalid syntax` happening when the default value of one argument of the created function is a subclass of a basic primitive. Fixes [98](https://github.com/smarie/python-makefun/issues/98). PR [99](https://github.com/smarie/python-makefun/pull/99) by [moskupols](https://github.com/moskupols).
1.15.2
- Fixed `SyntaxError` happening when the name of a native coroutine function to create contains `'return'`. Fixes [96](https://github.com/smarie/python-makefun/issues/96).
1.15.1
- Fixed `ValueError: Invalid co_name` happening on python 2 when the name of a function to create starts or ends with `_` or contains a double `__` . Fixes [91](https://github.com/smarie/python-makefun/issues/91)
1.15.0
- `wraps` now always sets the `__wrapped__` attribute, and also sets the `__signature__` attribute when the signature changes, as specified by PEP 362. PR [86](https://github.com/smarie/python-makefun/pull/86) by [lucaswiman](https://github.com/lucaswiman).