Revert use of Path.joinpath instead of Path.__div__
This commit is contained in:
@@ -7,7 +7,7 @@ except ImportError:
|
||||
from distutils.core import setup
|
||||
|
||||
this_directory = Path(__file__).parent
|
||||
long_description = this_directory.joinpath('README.md').read_text(encoding='utf-8')
|
||||
long_description = (this_directory / 'README.md').read_text(encoding='utf-8')
|
||||
|
||||
setup(
|
||||
name='cibuildwheel',
|
||||
|
||||
Reference in New Issue
Block a user