15
15
from jinja2 import Template
16
16
17
17
from pyp2spec .rpmversion import RpmVersion
18
- from pyp2spec .utils import Pyp2specError
18
+ from pyp2spec .utils import Pyp2specError , create_compat_python_name
19
19
from pyp2spec .utils import warn , yay
20
20
21
21
@@ -188,7 +188,7 @@ def fill_in_template(config: ConfigFile) -> str:
188
188
license_notice = license_notice ,
189
189
mandate_license = config .get_bool ("license_files_present" ),
190
190
name = config .get_string ("pypi_name" ),
191
- python_name = config .get_string ("python_name" ),
191
+ python_compat_name = create_compat_python_name ( config .get_string ("python_name" ), config . get_string ( "compat" ) ),
192
192
pypi_version = pypi_version_or_macro (pypi_version ),
193
193
python_alt_version = config .get_string ("python_alt_version" ),
194
194
source = source (config , pypi_version ),
@@ -208,9 +208,7 @@ def save_spec_file(config: ConfigFile, output: str | None) -> str:
208
208
209
209
result = fill_in_template (config )
210
210
if output is None :
211
- output = config .get_string ("python_name" )
212
- if compat := config .get_string ("compat" ):
213
- output += compat
211
+ output = create_compat_python_name (config .get_string ("python_name" ), config .get_string ("compat" ))
214
212
output += ".spec"
215
213
with open (output , "w" , encoding = "utf-8" ) as spec_file :
216
214
spec_file .write (result )
0 commit comments