Skip to content

Commit

Permalink
deps: bump configobj minver to 5.0.9 (#10636)
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry authored Nov 26, 2024
1 parent 8cb0f02 commit d38b2db
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ scripts/ci/gcp-creds.json
.gcp-creds.json

*~
/dvc/_dvc_version.py
/dvc/_version.py

.mypy_cache/
.pytest_cache/
Expand Down
4 changes: 2 additions & 2 deletions dvc/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
try:
from ._dvc_version import version as __version__ # type: ignore[import]
from ._dvc_version import version_tuple # type: ignore[import]
from ._version import version as __version__ # type: ignore[import]
from ._version import version_tuple # type: ignore[import]
except ImportError:
__version__ = "UNKNOWN"
version_tuple = (0, 0, __version__) # type: ignore[assignment]
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies = [
"attrs>=22.2.0",
"celery",
"colorama>=0.3.9",
"configobj>=5.0.6",
"configobj>=5.0.9",
"distro>=1.3",
"dpath<3,>=2.1.0",
"dulwich",
Expand Down Expand Up @@ -156,7 +156,7 @@ exclude = ["tests", "tests.*"]
namespaces = false

[tool.setuptools_scm]
write_to = "dvc/_dvc_version.py"
write_to = "dvc/_version.py"

[tool.pytest.ini_options]
addopts = "-ra --cov-config pyproject.toml"
Expand Down

0 comments on commit d38b2db

Please sign in to comment.