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 @@ -313,8 +313,8 @@ def update_proj(path):
313313 fname = path / _pyproj
314314 if not fname .exists (): fname .write_text (pyproj_tmpl )
315315 txt = fname .read_text ()
316- txt = _re_proj .sub (f'name= "{ get_config ().lib_name } "' , txt )
317- txt = _re_reqpy .sub (f'requires-python= ">={ get_config ().min_python } "' , txt )
316+ txt = _re_proj .sub (f'name = "{ get_config ().lib_name } "' , txt )
317+ txt = _re_reqpy .sub (f'requires-python = ">={ get_config ().min_python } "' , txt )
318318 fname .write_text (txt )
319319
320320# %% ../nbs/api/01_config.ipynb #bdf57184
Original file line number Diff line number Diff line change 793793 " fname = path/_pyproj\n " ,
794794 " if not fname.exists(): fname.write_text(pyproj_tmpl)\n " ,
795795 " txt = fname.read_text()\n " ,
796- " txt = _re_proj.sub(f'name= \" {get_config().lib_name}\" ', txt)\n " ,
797- " txt = _re_reqpy.sub(f'requires-python= \" >={get_config().min_python}\" ', txt)\n " ,
796+ " txt = _re_proj.sub(f'name = \" {get_config().lib_name}\" ', txt)\n " ,
797+ " txt = _re_reqpy.sub(f'requires-python = \" >={get_config().min_python}\" ', txt)\n " ,
798798 " fname.write_text(txt)"
799799 ]
800800 },
You can’t perform that action at this time.
0 commit comments