File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[build-system ]
2- build-backend = " flit_core.buildapi "
2+ build-backend = " hatchling.build "
33requires = [
4- " flit_core<4,>=2" ,
4+ " hatch-vcs" ,
5+ " hatchling" ,
56]
67
78[project ]
@@ -30,4 +31,10 @@ Changelog = "https://github.com/python/core-workflow/tree/main/blurb#changelog"
3031Homepage = " https://github.com/python/core-workflow/tree/main/blurb"
3132Source = " https://github.com/python/core-workflow/tree/main/blurb"
3233[project .scripts ]
33- blurb = " blurb:main"
34+ blurb = " blurb.blurb:main"
35+
36+ [tool .hatch ]
37+ version.source = " vcs"
38+
39+ [tool .hatch .version .raw-options ]
40+ local_scheme = " no-local-version"
File renamed without changes.
Original file line number Diff line number Diff line change @@ -829,7 +829,7 @@ def test(*args):
829829 # unittest.main doesn't work because this isn't a module
830830 # so we'll do it ourselves
831831
832- while not ( os .path .isdir (".git" ) and os . path . isdir ( " blurb") ):
832+ while not os .path .isdir ("blurb" ):
833833 old_dir = os .getcwd ()
834834 os .chdir (".." )
835835 if old_dir == os .getcwd ():
Original file line number Diff line number Diff line change 11import pytest
22from pyfakefs .fake_filesystem import FakeFilesystem
33
4- import blurb
4+ from blurb import blurb
55
66
77UNCHANGED_SECTIONS = (
You can’t perform that action at this time.
0 commit comments