File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ scikit-build>=0.7.1
1010setuptools >= 28.0.0
1111twine
1212virtualenv >= 15.0.3
13- wheel
13+ wheel == 0.31.1
Original file line number Diff line number Diff line change 22import os
33import pytest
44
5- from path import Path
5+ from path import Path , matchers
66
77DIST_DIR = os .path .abspath (os .path .join (os .path .dirname (__file__ ), '../dist' ))
88
@@ -18,7 +18,7 @@ def _check_ninja_install(virtualenv):
1818
1919@pytest .mark .skipif (not Path (DIST_DIR ).exists (), reason = "dist directory does not exist" )
2020def test_source_distribution (virtualenv ):
21- sdists = Path (DIST_DIR ).files (pattern = "*.tar.gz" )
21+ sdists = Path (DIST_DIR ).files (match = matchers . CaseInsensitive ( "*.tar.gz" ) )
2222 if not sdists :
2323 pytest .skip ("no source distribution available" )
2424 assert len (sdists ) == 1
@@ -32,7 +32,7 @@ def test_source_distribution(virtualenv):
3232
3333@pytest .mark .skipif (not Path (DIST_DIR ).exists (), reason = "dist directory does not exist" )
3434def test_wheel (virtualenv ):
35- wheels = Path (DIST_DIR ).files (pattern = "*.whl" )
35+ wheels = Path (DIST_DIR ).files (match = matchers . CaseInsensitive ( "*.whl" ) )
3636 if not wheels :
3737 pytest .skip ("no wheel available" )
3838 assert len (wheels ) == 1
You can’t perform that action at this time.
0 commit comments