From 843b398e8cac8c46282bdb15ebbd26208869020d Mon Sep 17 00:00:00 2001 From: Henry Birge-Lee Date: Mon, 23 Jun 2025 13:37:09 -0400 Subject: [PATCH 1/3] bumpped project versions in anticipation for core 5.9.0 --- pyproject.toml | 24 ++++++++++++------------ src/aws_lambda_mpic/__about__.py | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2ec2094..122e934 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,25 +26,25 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ -# "open-mpic-core @ git+https://github.com/open-mpic/open-mpic-core-python.git@birgelee-key-auth-hash", + "open-mpic-core @ git+https://github.com/open-mpic/open-mpic-core-python.git@birgelee-version-bump", "pyyaml==6.0.2", - "requests>=2.32.3", + "requests==2.32.4", "dnspython==2.7.0", - "pydantic==2.10.6", - "aiohttp==3.11.13", - "aws-lambda-powertools[parser]==3.8.0", - "open-mpic-core==5.6.0", - "aioboto3~=13.3.0", - "black==24.8.0", + "pydantic==2.11.7", + "aiohttp==3.12.13", + "aws-lambda-powertools[parser]==3.15.1", + #"open-mpic-core==5.9.0", + "aioboto3~=14.3.0", + "black==25.1.0", ] [project.optional-dependencies] test = [ - "pytest==8.2.2", - "pytest-cov==5.0.0", - "pytest-mock==3.14.0", + "pytest==8.4.1", + "pytest-cov==6.2.1", + "pytest-mock==3.14.1", "pytest-html==4.1.1", - "pytest-asyncio==0.25.1", + "pytest-asyncio==1.0.0", ] [project.urls] diff --git a/src/aws_lambda_mpic/__about__.py b/src/aws_lambda_mpic/__about__.py index 6849410..c68196d 100644 --- a/src/aws_lambda_mpic/__about__.py +++ b/src/aws_lambda_mpic/__about__.py @@ -1 +1 @@ -__version__ = "1.1.0" +__version__ = "1.2.0" From 36392c802f0f4f29fecf5f1250b34c4a31c0a795 Mon Sep 17 00:00:00 2001 From: Henry Birge-Lee Date: Mon, 23 Jun 2025 13:41:23 -0400 Subject: [PATCH 2/3] api version bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 122e934..89f4a1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ Source = "https://github.com/open-mpic/aws-lambda-python" #virtual = ".hatch" [tool.api] -spec_version = "3.3.1" +spec_version = "3.5.0" spec_repository = "https://github.com/open-mpic/open-mpic-specification" [tool.hatch] From 22528fc39aec7808cf188a623e50b4cacb12a566 Mon Sep 17 00:00:00 2001 From: Henry Birge-Lee Date: Mon, 23 Jun 2025 14:13:54 -0400 Subject: [PATCH 3/3] use core 5.9.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 89f4a1a..c1cef61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,14 +26,14 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "open-mpic-core @ git+https://github.com/open-mpic/open-mpic-core-python.git@birgelee-version-bump", + #"open-mpic-core @ git+https://github.com/open-mpic/open-mpic-core-python.git@birgelee-version-bump", "pyyaml==6.0.2", "requests==2.32.4", "dnspython==2.7.0", "pydantic==2.11.7", "aiohttp==3.12.13", "aws-lambda-powertools[parser]==3.15.1", - #"open-mpic-core==5.9.0", + "open-mpic-core==5.9.0", "aioboto3~=14.3.0", "black==25.1.0", ]