Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
altgraph==0.17.2 ; python_version >= "3.10" and python_version < "3.15"
astroid==3.3.11 ; python_version >= "3.10" and python_version < "3.15"
black==25.12.0 ; python_version >= "3.10" and python_version < "3.15"
astroid==4.0.3 ; python_version >= "3.10" and python_version < "3.15"
black==26.1.0 ; python_version >= "3.10" and python_version < "3.15"
cached-property==1.5.2 ; python_version >= "3.10" and python_version < "3.15"
certifi==2024.7.4 ; python_version >= "3.10" and python_version < "3.15"
charset-normalizer==2.1.1 ; python_version >= "3.10" and python_version < "3.15"
Expand All @@ -9,7 +9,7 @@ click==8.1.3 ; python_version >= "3.10" and python_version < "3.15"
colorama==0.4.5 ; python_version >= "3.10" and python_version < "3.15"
coverage==7.10.6 ; python_version >= "3.10" and python_version < "3.15"
coveragespace==6.1 ; python_version >= "3.10" and python_version < "3.15"
datafiles==2.3.4 ; python_version >= "3.10" and python_version < "3.15"
datafiles==2.5 ; python_version >= "3.10" and python_version < "3.15"
dill==0.3.8 ; python_version >= "3.10" and python_version < "3.15"
docopt==0.6.2 ; python_version >= "3.10" and python_version < "3.15"
exceptiongroup==1.1.1 ; python_version == "3.10"
Expand All @@ -34,28 +34,28 @@ mkdocs-autorefs==1.4.3 ; python_version >= "3.10" and python_version < "3.15"
mkdocs-get-deps==0.2.0 ; python_version >= "3.10" and python_version < "3.15"
mkdocs==1.6.1 ; python_version >= "3.10" and python_version < "3.15"
mkdocstrings-python==2.0.1 ; python_version >= "3.10" and python_version < "3.15"
mkdocstrings==0.30.1 ; python_version >= "3.10" and python_version < "3.15"
mkdocstrings==1.0.2 ; python_version >= "3.10" and python_version < "3.15"
mypy-extensions==1.0.0 ; python_version >= "3.10" and python_version < "3.15"
mypy==1.19.1 ; python_version >= "3.10" and python_version < "3.15"
nose==1.3.7 ; python_version >= "3.10" and python_version < "3.15"
packaging==24.1 ; python_version >= "3.10" and python_version < "3.15"
parse==1.19.0 ; python_version >= "3.10" and python_version < "3.15"
pathspec==0.12.1 ; python_version >= "3.10" and python_version < "3.15"
pathspec==1.0.4 ; python_version >= "3.10" and python_version < "3.15"
pefile==2022.5.30 ; python_version >= "3.10" and python_version < "3.15" and sys_platform == "win32"
platformdirs==2.5.2 ; python_version >= "3.10" and python_version < "3.15"
pluggy==1.5.0 ; python_version >= "3.10" and python_version < "3.15"
pydocstyle==6.3.0 ; python_version >= "3.10" and python_version < "3.15"
pygments==2.19.2 ; python_version >= "3.10" and python_version < "3.15"
pyinstaller-hooks-contrib==2025.10 ; python_version >= "3.10" and python_version < "3.15"
pyinstaller==6.18.0 ; python_version >= "3.10" and python_version < "3.15"
pylint==3.3.9 ; python_version >= "3.10" and python_version < "3.15"
pylint==4.0.4 ; python_version >= "3.10" and python_version < "3.15"
pymdown-extensions==10.16.1 ; python_version >= "3.10" and python_version < "3.15"
pync==2.0.3 ; python_version >= "3.10" and python_version < "3.15" and sys_platform == "darwin"
pytest-cov==7.0.0 ; python_version >= "3.10" and python_version < "3.15"
pytest-describe==3.1.0 ; python_version >= "3.10" and python_version < "3.15"
pytest-expecter==3.0 ; python_version >= "3.10" and python_version < "3.15"
pytest-random==0.2 ; python_version >= "3.10" and python_version < "3.15"
pytest==8.4.2 ; python_version >= "3.10" and python_version < "3.15"
pytest==9.0.2 ; python_version >= "3.10" and python_version < "3.15"
python-dateutil==2.8.2 ; python_version >= "3.10" and python_version < "3.15"
python-termstyle==0.1.10 ; python_version >= "3.10" and python_version < "3.15"
pytokens==0.3.0 ; python_version >= "3.10" and python_version < "3.15"
Expand Down
4 changes: 1 addition & 3 deletions gitman/models/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,9 +386,7 @@ def _invalid_repository(self):

Not a valid repository: {}
During install you can rebuild a repo with a missing .git directory using the --force option
""".format(
path
)
""".format(path)
return exceptions.InvalidRepository(msg)


Expand Down
74 changes: 40 additions & 34 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ universal-startfile = ">=0.2,<0.5"
[tool.poetry.group.dev.dependencies]

# Formatters
black = ">=24.8,<26.0"
black = ">=24.8,<27.0"
isort = ">=5.13,<7.0"

# Linters
Expand Down
Loading