OK.

On 2019/11/07 13:36, Kurt Mosiejczuk wrote:
> The package wants py-funcsigs for all python, even though it is only
> needed for Python <3.3. I've patched the setup.py and sent it upstream.
> This makes tests for the python3 FLAVOR work once again.
> 
> --Kurt
> 
> Index: patches/patch-setup_py
> ===================================================================
> RCS file: patches/patch-setup_py
> diff -N patches/patch-setup_py
> --- /dev/null 1 Jan 1970 00:00:00 -0000
> +++ patches/patch-setup_py    7 Nov 2019 11:34:27 -0000
> @@ -0,0 +1,18 @@
> +$OpenBSD$
> +
> +Only require funcsigs for 2.7. Patch sent upstream.
> +
> +https://patch-diff.githubusercontent.com/raw/RIPE-NCC/ripe-atlas-cousteau/pull/53.diff
> +
> +Index: setup.py
> +--- setup.py.orig
> ++++ setup.py
> +@@ -12,7 +12,7 @@ install_requires = [
> + ]
> + 
> + tests_require = [
> +-    "funcsigs",
> ++    'funcsigs;python_version<"3.3"',
> +     "setuptools",
> +     "nose",
> +     "coverage",

Reply via email to