Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve options passing and default options handling (do not merge) #2319

Draft
wants to merge 41 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
bfa3441
Inherit from pyk options classes
nwatson22 Feb 28, 2024
07d1191
Add type hints and default values
nwatson22 Feb 29, 2024
80f5f46
Start applying options to exec functions
nwatson22 Feb 29, 2024
a883f0f
Set Version: 1.0.467
Feb 29, 2024
e19a8dc
Add some missing default options
nwatson22 Feb 29, 2024
3803e04
Add some missing default options
nwatson22 Feb 29, 2024
3a5de67
Merge branch 'noah/kevm-default-options' of https://github.com/runtim…
nwatson22 Feb 29, 2024
242a720
Integrate with the rest of the command exec functions
nwatson22 Feb 29, 2024
93e33e6
Merge master into branch
nwatson22 Mar 4, 2024
8150335
Set Version: 1.0.478
Mar 4, 2024
acd6a96
Update to use new system
nwatson22 Mar 4, 2024
e59ea8d
Merge branch 'noah/kevm-default-options' of https://github.com/runtim…
nwatson22 Mar 4, 2024
07d4fd4
Remove default=None, use default() for lists
nwatson22 Mar 5, 2024
bcc12fa
Rename args to update_args, don't return parser when updating
nwatson22 Mar 5, 2024
ebcf30b
Update for new pyk branch version
nwatson22 Mar 5, 2024
9c0dfc7
Merge master into branch
nwatson22 Mar 5, 2024
44c2ee4
Set Version: 1.0.480
Mar 5, 2024
8d29e0b
Update poetry.lock
nwatson22 Mar 5, 2024
c6a6584
Merge branch 'noah/kevm-default-options' of https://github.com/runtim…
nwatson22 Mar 5, 2024
0eb2998
Update poetry.lock
nwatson22 Mar 5, 2024
42d7035
Update pyproject.toml
nwatson22 Mar 5, 2024
f071653
update poetry.lock
nwatson22 Mar 5, 2024
18edce9
Merge branch 'master' into noah/kevm-default-options
nwatson22 Mar 5, 2024
48b1bb2
Set Version: 1.0.481
Mar 5, 2024
39a83f7
Update to use CLI.get_command()
nwatson22 Mar 6, 2024
5ad6091
Merge branch 'noah/kevm-default-options' of https://github.com/runtim…
nwatson22 Mar 6, 2024
5b7e145
Merge master into branch
nwatson22 Mar 6, 2024
5ee91e8
Set Version: 1.0.483
Mar 6, 2024
41c1900
Merge master into branch
nwatson22 Mar 6, 2024
29e4803
Set Version: 1.0.484
Mar 6, 2024
7c6cb8c
Merge master into branch
nwatson22 Mar 7, 2024
b134651
Merge master into branch
nwatson22 Mar 7, 2024
bb54510
Set Version: 1.0.485
Mar 7, 2024
a077ebf
Merge master into branch
nwatson22 Mar 8, 2024
ee28f4d
Fix formatting
nwatson22 Mar 8, 2024
6bd0b04
Set Version: 1.0.490
Mar 8, 2024
dcdbb26
Set Version: 1.0.491
Mar 8, 2024
5938605
Update nix flake
nwatson22 Mar 8, 2024
75f182e
Merge branch 'noah/kevm-default-options' of https://github.com/runtim…
nwatson22 Mar 8, 2024
d1f9311
Merge master into branch
nwatson22 Mar 11, 2024
e0773c8
Set Version: 1.0.493
Mar 11, 2024
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
8 changes: 4 additions & 4 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
nixpkgs.follows = "k-framework/nixpkgs";
flake-utils.follows = "k-framework/flake-utils";
rv-utils.follows = "k-framework/rv-utils";
pyk.url = "github:runtimeverification/pyk/v0.1.694";
pyk.url = "github:runtimeverification/pyk/noah/default-options";
nixpkgs-pyk.follows = "pyk/nixpkgs";
poetry2nix.follows = "pyk/poetry2nix";
blockchain-k-plugin = {
Expand Down
8 changes: 4 additions & 4 deletions kevm-pyk/poetry.lock

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

4 changes: 2 additions & 2 deletions kevm-pyk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kevm-pyk"
version = "1.0.492"
version = "1.0.493"
description = ""
authors = [
"Runtime Verification, Inc. <contact@runtimeverification.com>",
Expand All @@ -13,7 +13,7 @@ authors = [
[tool.poetry.dependencies]
python = "^3.10"
pathos = "*"
pyk = { git = "https://github.com/runtimeverification/pyk.git", tag="v0.1.694" }
pyk = { git = "https://github.com/runtimeverification/pyk.git", branch="noah/default-options" }
tomlkit = "^0.11.6"

[tool.poetry.group.dev.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from typing import Final


VERSION: Final = '1.0.492'
VERSION: Final = '1.0.493'
Loading
Loading