File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import os , logging
22import tomli , tomli_w
33
4+ logging .basicConfig (level = logging .DEBUG , format = '%(asctime)s - %(levelname)s - %(message)s' )
5+
46pyproject_path = os .path .join (os .path .dirname (__file__ ), '../pyproject.toml' )
57with open (pyproject_path , 'rb' ) as file :
68 pkg_name = tomli .load (file )['project' ]['name' ]
79
8- logging .basicConfig (level = logging .DEBUG , format = '%(asctime)s - %(levelname)s - %(message)s' )
9-
1010def update_changelog_url ():
1111
1212 logging .debug (f'Loading { pyproject_path } ...' )
Original file line number Diff line number Diff line change 11import os , logging
22import tomli , tomli_w
33
4+ logging .basicConfig (level = logging .DEBUG , format = '%(asctime)s - %(levelname)s - %(message)s' )
5+
46pyproject_path = os .path .join (os .path .dirname (__file__ ), '../pyproject.toml' )
57with open (pyproject_path , 'rb' ) as file :
68 pkg_name = tomli .load (file )['project' ]['name' ]
79
8- logging .basicConfig (level = logging .DEBUG , format = '%(asctime)s - %(levelname)s - %(message)s' )
9-
1010def update_changelog_url ():
1111
1212 logging .debug (f'Loading { pyproject_path } ...' )
You can’t perform that action at this time.
0 commit comments