retrieve repositories
This commit is contained in:
parent
90acc2baf7
commit
b44af744b0
1 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,8 @@
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
|
import git
|
||||||
|
|
||||||
import PyTeX
|
import PyTeX
|
||||||
|
|
||||||
from .build_information import BuildInfo
|
from .build_information import BuildInfo
|
||||||
|
@ -55,8 +57,8 @@ def build(
|
||||||
include_git_version=include_git_version,
|
include_git_version=include_git_version,
|
||||||
include_pytex_info_text=include_pytex_info_text,
|
include_pytex_info_text=include_pytex_info_text,
|
||||||
author=author,
|
author=author,
|
||||||
pytex_repo=None, # TODO
|
pytex_repo=git.Repo(__file__, search_parent_directories=True), # TODO
|
||||||
packages_repo=None # TODO
|
packages_repo=git.Repo(src_dir, search_parent_directories=True) # TODO
|
||||||
)
|
)
|
||||||
old_build_info = {} # TODO: read this in from file
|
old_build_info = {} # TODO: read this in from file
|
||||||
# extra_header += ['WARNING: Local changes to git repository detected.',
|
# extra_header += ['WARNING: Local changes to git repository detected.',
|
||||||
|
|
Loading…
Reference in a new issue