Skip to content

Commit

Permalink
Fix propagated secp256k1 dependency (#2365)
Browse files Browse the repository at this point in the history
* fix propagated secp256k1 dependency

* Set Version: 1.0.503

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
goodlyrottenapple and devops authored Mar 20, 2024
1 parent 085fb76 commit 92be72e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
let
nixLibs = pkgs:
with pkgs;
"-I${procps}/include -L${procps}/lib -I${openssl.dev}/include -L${openssl.out}/lib";
"-I${procps}/include -L${procps}/lib -I${openssl.dev}/include -L${openssl.out}/lib -I${secp256k1}/include -L${secp256k1}/lib";
buildInputs = pkgs:
with pkgs;
[
Expand Down Expand Up @@ -68,7 +68,6 @@
version = self.rev or "dirty";
buildInputs = buildInputs final ++ [ final.kevm-pyk ];
nativeBuildInputs = [ prev.makeWrapper ];
propagatedBuildInputs = [ final.secp256k1 ];

src = prev.stdenv.mkDerivation {
name = "kevm-${self.rev or "dirty"}-src";
Expand Down
2 changes: 1 addition & 1 deletion 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.502"
version = "1.0.503"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
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.502'
VERSION: Final = '1.0.503'
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.502
1.0.503

0 comments on commit 92be72e

Please sign in to comment.