Skip to content

Commit

Permalink
chore(deps): Bump xdgenvpy from 2.4.0 to 3.0.0 (#85)
Browse files Browse the repository at this point in the history
* chore(deps): Bump xdgenvpy from 2.4.0 to 3.0.0

---
updated-dependencies:
- dependency-name: xdgenvpy
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix(cache): fix import for xdgenvpy 3.0.0

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: John Lettman <[email protected]>
  • Loading branch information
dependabot[bot] and johnlettman authored Sep 16, 2024
1 parent 492a3a1 commit 8d657b3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
21 changes: 16 additions & 5 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ click = "^8.1.7"
fabric = "^3.2.2"
invoke = "^2.2.0"
orjson = "^3.10.7"
xdgenvpy = "^2.4.0"
xdgenvpy = "^3.0.0"
python-slugify = "^8.0.4"
rich-argparse = "^1.5.2"
regex = "^2024.9.11"
dotty-dictionary = "^1.2.0"
types-xdgenvpy = "^2.4.0.20240905"

[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
Expand Down
2 changes: 1 addition & 1 deletion src/jockey/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
from orjson import dumps as json_dumps
from orjson import loads as json_loads
from slugify import slugify
from xdgenvpy import XDGPedanticPackage # type: ignore[import-untyped]
from xdgenvpy.xdgenv import XDGPedanticPackage


JOCKEY_XDG = XDGPedanticPackage("jockey")
Expand Down

0 comments on commit 8d657b3

Please sign in to comment.