We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38a252e commit e6fe6beCopy full SHA for e6fe6be
setup.cfg
@@ -25,7 +25,7 @@ package_dir=
25
packages = find:
26
install_requires=
27
gitpython>3
28
- dulwich>=0.20.38
+ dulwich>=0.20.46
29
pygit2>=1.10.0
30
pygtrie>=2.3.2
31
fsspec>=2021.7.0
src/scmrepo/git/backend/dulwich/__init__.py
@@ -773,10 +773,6 @@ def status(
773
staged, unstaged, untracked = git_status(
774
self.root_dir, ignored=ignored, untracked_files=untracked_files
775
)
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]
780
781
return (
782
{
0 commit comments