Revert use of Path.joinpath instead of Path.__div__

This commit is contained in:
Yannick Jadoul
2020-06-21 13:14:53 +02:00
parent acf5c24881
commit d552d29eae
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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',