26
26
import setuptools .command .easy_install as ei
27
27
from pkg_resources import Distribution as PRDistribution , normalize_path , working_set
28
28
from setuptools import sandbox
29
+ from setuptools ._normalization import safer_name
29
30
from setuptools .command .easy_install import PthDistributions
30
31
from setuptools .dist import Distribution
31
32
from setuptools .sandbox import run_setup
@@ -670,11 +671,11 @@ def test_setup_requires_override_nspkg(self, use_setup_cfg):
670
671
671
672
with contexts .save_pkg_resources_state ():
672
673
with contexts .tempdir () as temp_dir :
673
- foobar_1_archive = os .path .join (temp_dir , 'foo.bar -0.1.tar.gz' )
674
+ foobar_1_archive = os .path .join (temp_dir , 'foo_bar -0.1.tar.gz' )
674
675
make_nspkg_sdist (foobar_1_archive , 'foo.bar' , '0.1' )
675
676
# Now actually go ahead an extract to the temp dir and add the
676
677
# extracted path to sys.path so foo.bar v0.1 is importable
677
- foobar_1_dir = os .path .join (temp_dir , 'foo.bar -0.1' )
678
+ foobar_1_dir = os .path .join (temp_dir , 'foo_bar -0.1' )
678
679
os .mkdir (foobar_1_dir )
679
680
with tarfile .open (foobar_1_archive ) as tf :
680
681
tf .extraction_filter = lambda member , path : member
@@ -697,7 +698,7 @@ def test_setup_requires_override_nspkg(self, use_setup_cfg):
697
698
len(foo.__path__) == 2):
698
699
print('FAIL')
699
700
700
- if 'foo.bar -0.2' not in foo.__path__[0]:
701
+ if 'foo_bar -0.2' not in foo.__path__[0]:
701
702
print('FAIL')
702
703
"""
703
704
)
@@ -718,8 +719,8 @@ def test_setup_requires_override_nspkg(self, use_setup_cfg):
718
719
# Don't even need to install the package, just
719
720
# running the setup.py at all is sufficient
720
721
run_setup (test_setup_py , ['--name' ])
721
- except pkg_resources .VersionConflict :
722
- self .fail (
722
+ except pkg_resources .VersionConflict : # pragma: nocover
723
+ pytest .fail (
723
724
'Installing setup.py requirements caused a VersionConflict'
724
725
)
725
726
@@ -1120,6 +1121,8 @@ def make_nspkg_sdist(dist_path, distname, version):
1120
1121
package with the same name as distname. The top-level package is
1121
1122
designated a namespace package).
1122
1123
"""
1124
+ # Assert that the distname contains at least one period
1125
+ assert '.' in distname
1123
1126
1124
1127
parts = distname .split ('.' )
1125
1128
nspackage = parts [0 ]
@@ -1207,10 +1210,11 @@ def create_setup_requires_package(
1207
1210
package itself is just 'test_pkg'.
1208
1211
"""
1209
1212
1213
+ normalized_distname = safer_name (distname )
1210
1214
test_setup_attrs = {
1211
1215
'name' : 'test_pkg' ,
1212
1216
'version' : '0.0' ,
1213
- 'setup_requires' : [f'{ distname } =={ version } ' ],
1217
+ 'setup_requires' : [f'{ normalized_distname } =={ version } ' ],
1214
1218
'dependency_links' : [os .path .abspath (path )],
1215
1219
}
1216
1220
if setup_attrs :
@@ -1259,7 +1263,7 @@ def create_setup_requires_package(
1259
1263
with open (os .path .join (test_pkg , 'setup.py' ), 'w' , encoding = "utf-8" ) as f :
1260
1264
f .write (setup_py_template % test_setup_attrs )
1261
1265
1262
- foobar_path = os .path .join (path , f'{ distname } -{ version } .tar.gz' )
1266
+ foobar_path = os .path .join (path , f'{ normalized_distname } -{ version } .tar.gz' )
1263
1267
make_package (foobar_path , distname , version )
1264
1268
1265
1269
return test_pkg
0 commit comments