-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add change detection to
kdist
(#2182)
* Extract function `_resolve_id` * Extract method `TargetId.parse` * Create class `TargetCache` * Eliminate function `_resolve` * Move function `_cwd` to new module `utils` * Add change detection * Rename `fqn` to `full_name` * Set Version: 1.0.364 --------- Co-authored-by: devops <[email protected]>
- Loading branch information
1 parent
316e095
commit d5fd9d3
Showing
8 changed files
with
276 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "kevm-pyk" | ||
version = "1.0.363" | ||
version = "1.0.364" | ||
description = "" | ||
authors = [ | ||
"Runtime Verification, Inc. <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
from typing import Final | ||
|
||
|
||
VERSION: Final = '1.0.363' | ||
VERSION: Final = '1.0.364' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from ._kdist import build, clean, get, get_or_none, plugins, resolve, targets, which | ||
from ._kdist import build, clean, get, get_or_none, plugins, targets, which |
Oops, something went wrong.