Skip to content

Commit e6fe6be

Browse files
dtrifiroefiop
authored andcommitted
deps: bump dulwich to >=0.20.46
1 parent 38a252e commit e6fe6be

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ package_dir=
2525
packages = find:
2626
install_requires=
2727
gitpython>3
28-
dulwich>=0.20.38
28+
dulwich>=0.20.46
2929
pygit2>=1.10.0
3030
pygtrie>=2.3.2
3131
fsspec>=2021.7.0

src/scmrepo/git/backend/dulwich/__init__.py

-4
Original file line numberDiff line numberDiff line change
@@ -773,10 +773,6 @@ def status(
773773
staged, unstaged, untracked = git_status(
774774
self.root_dir, ignored=ignored, untracked_files=untracked_files
775775
)
776-
if os.name == "nt":
777-
# TODO: remove when https://github.com/jelmer/dulwich/pull/995 is
778-
# merged and released
779-
untracked = [path.replace("\\", "/") for path in untracked]
780776

781777
return (
782778
{

0 commit comments

Comments
 (0)