File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1+ Pin pathlib2 to ``>=2.2.0 `` as we require ``__fspath__ `` support.
Original file line number Diff line number Diff line change @@ -73,19 +73,19 @@ def main():
7373 environment_marker_support_level = get_environment_marker_support_level ()
7474 if environment_marker_support_level >= 2 :
7575 install_requires .append ('funcsigs;python_version<"3.0"' )
76- install_requires .append ('pathlib2;python_version<"3.6"' )
76+ install_requires .append ('pathlib2>=2.2.0 ;python_version<"3.6"' )
7777 install_requires .append ('colorama;sys_platform=="win32"' )
7878 elif environment_marker_support_level == 1 :
7979 extras_require [':python_version<"3.0"' ] = ["funcsigs" ]
80- extras_require [':python_version<"3.6"' ] = ["pathlib2" ]
80+ extras_require [':python_version<"3.6"' ] = ["pathlib2>=2.2.0 " ]
8181 extras_require [':sys_platform=="win32"' ] = ["colorama" ]
8282 else :
8383 if sys .platform == "win32" :
8484 install_requires .append ("colorama" )
8585 if sys .version_info < (3 , 0 ):
8686 install_requires .append ("funcsigs" )
8787 if sys .version_info < (3 , 6 ):
88- install_requires .append ("pathlib2" )
88+ install_requires .append ("pathlib2>=2.2.0 " )
8989
9090 setup (
9191 name = "pytest" ,
You can’t perform that action at this time.
0 commit comments