From e91b89fea4608ae65d2025144bc43a42f4ce0501 Mon Sep 17 00:00:00 2001 From: Raymond Penners Date: Thu, 24 Mar 2022 22:31:22 +0100 Subject: [PATCH] fix(setup): compatibility setuptools 61 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5b39ec01ed..e4fc0e95c4 100644 --- a/setup.py +++ b/setup.py @@ -4,9 +4,10 @@ import io import os import sys +from distutils.util import convert_path from fnmatch import fnmatchcase -from setuptools import convert_path, find_packages, setup +from setuptools import find_packages, setup # Provided as an attribute, so you can append to these instead