Skip to content

Commit

Permalink
chore(CI): Allow local testing
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmcdonald3 committed Nov 1, 2024
1 parent 0351a1c commit 661e668
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var props = Properties().apply {
var dafnyVersion = props.getProperty("dafnyVersion")

group = "software.amazon.cryptography"
version = "1.7.3"
version = "1.7.3-SNAPSHOT"
description = "AWS Cryptographic Material Providers Library"

java {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ readme = "README.rst"

[tool.poetry.dependencies]
python = "^3.11.0"
aws-cryptography-internal-standard-library = "1.7.3"
aws-cryptography-internal-kms = "1.7.3"
aws-cryptography-internal-dynamodb = "1.7.3"
aws-cryptography-internal-primitives = "1.7.3"
aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"}
aws-cryptography-internal-kms = {path = "../../../ComAmazonawsKms/runtimes/python"}
aws-cryptography-internal-dynamodb = {path = "../../../ComAmazonawsDynamodb/runtimes/python"}
aws-cryptography-internal-primitives = {path = "../../../AwsCryptographyPrimitives/runtimes/python"}

# Package testing

Expand Down
2 changes: 1 addition & 1 deletion AwsCryptographyPrimitives/runtimes/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ include = ["**/internaldafny/generated/*.py"]

[tool.poetry.dependencies]
python = "^3.11.0"
aws-cryptography-internal-standard-library = "1.7.3"
aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"}
cryptography = "^43.0.1"

# Package testing
Expand Down
3 changes: 2 additions & 1 deletion ComAmazonawsDynamodb/runtimes/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ include = ["**/internaldafny/generated/*.py"]
[tool.poetry.dependencies]
python = "^3.11.0"
boto3 = "^1.35.42"
aws-cryptography-internal-standard-library = "1.7.3"
aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"}

# Package testing

[tool.poetry.group.test]
Expand Down
2 changes: 1 addition & 1 deletion ComAmazonawsKms/runtimes/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include = ["**/internaldafny/generated/*.py"]
[tool.poetry.dependencies]
python = "^3.11.0"
boto3 = "^1.35.42"
aws-cryptography-internal-standard-library = "1.7.3"
aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"}

# Package testing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var props = Properties().apply {
var dafnyVersion = props.getProperty("dafnyVersion")

group = "software.amazon.cryptography"
version = "1.7.3"
version = "1.7.3-SNAPSHOT"
description = "TestAwsCryptographicMaterialProviders"

java {
Expand Down Expand Up @@ -68,7 +68,7 @@ repositories {
dependencies {
implementation("org.dafny:DafnyRuntime:${dafnyVersion}")
implementation("software.amazon.smithy.dafny:conversion:0.1.1")
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.7.3")
implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.7.3-SNAPSHOT")
implementation(platform("software.amazon.awssdk:bom:2.25.1"))
implementation("software.amazon.awssdk:dynamodb")
implementation("software.amazon.awssdk:dynamodb-enhanced")
Expand Down
2 changes: 1 addition & 1 deletion project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
# And the Dotnet projects include and parse this file.
dafnyVersion=4.8.0
dafnyVerifyVersion=4.8.0
mplVersion=1.7.3
mplVersion=1.7.3-SNAPSHOT

0 comments on commit 661e668

Please sign in to comment.