params-flow
params-flow copied to clipboard
setuptools.convert_path removed
Hi,
in setuptools v70.0.0 the method convert_path
has been removed.
This package uses convert_path
here. Maybe you could change
from setuptools import setup, find_packages, convert_path
to
from setuptools import setup, find_packages
from distutils.util import convert_path
?
Thanks Steffen