Feature/cumulus consolidate update - #29
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request updates the repository to Python 3.12 across packaging (Poetry), CI workflows, and Terraform, alongside a small Terraform provider definition refactor and changelog updates.
Changes:
- Bump Python runtime/version references from 3.11 to 3.12 in
pyproject.toml, GitHub Actions, and Terraform Lambda runtime. - Refactor Terraform
required_providersdeclarations (now using explicit provider sources). - Update CI Poetry version pin and document the changes in
CHANGELOG.md.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
terraform/main.tf |
Refactors Terraform provider requirements (but currently removes AWS provider configuration). |
terraform/lambda.tf |
Updates Lambda runtime to python3.12. |
pyproject.toml |
Updates Poetry Python constraint to ^3.12. |
CHANGELOG.md |
Adds Unreleased notes for the Python/Terraform updates. |
.github/workflows/build.yml |
Updates CI to Python 3.12 and newer action/Poetry versions. |
.github/workflows/.release-created.yml |
Updates release workflow to Python 3.12 and newer Poetry/action versions. |
Comments suppressed due to low confidence (1)
terraform/main.tf:13
- The AWS provider configuration (region/profile and
ignore_tags) was removed, which changes how Terraform determines the AWS region/credentials and can reintroduce tag-drift noise thatignore_tagspreviously suppressed. If this wasn't intentional, re-add theprovider "aws"block here so the module continues to usevar.region/var.aws_profileand preserves the existing tag-ignore behavior.
}
data "aws_caller_identity" "current" {}
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
3
to
5
| aws = { | ||
| source = "hashicorp/aws" | ||
| } |
Comment on lines
7
to
9
| null = { | ||
| source = "hashicorp/null" | ||
| } |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
jamesfwood
requested changes
Jun 24, 2026
|
|
||
| ### Added | ||
| ### Changed | ||
| - Updated to python 3.12 |
Collaborator
There was a problem hiding this comment.
It was already python 3.12, so this isn't needed
jamesfwood
self-requested a review
June 24, 2026 23:50
jamesfwood
approved these changes
Jun 24, 2026
sliu008
added a commit
that referenced
this pull request
Jul 21, 2026
* /version 0.7.0a0 * /version 0.7.0a1 * /version 0.7.0a4 * Deploy workflow: org-add-to-project.yml This workflow is being deployed across the organization. Co-Authored-By: Claude (claude-sonnet-4.5) <noreply@anthropic.com> * Deploy workflow: org-close-pr-status.yml This workflow is being deployed across the organization. Co-Authored-By: Claude (claude-sonnet-4.5) <noreply@anthropic.com> * Deploy workflow: org-team-assignment.yml This workflow is being deployed across the organization. Co-Authored-By: Claude (claude-sonnet-4.5) <noreply@anthropic.com> * /version 0.7.0a5 * Feature/cumulus consolidate update (#29) * update terraform and python libraries for cumulus consolidation * update to python 3.12 * update github actions versions * update github actions versions * update changelog * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * update poetry * use poetry 2.3.2 * update changelog * update cumulus-process minimum --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * /version 0.7.0a6 * Feature/cumulus consolidate update (#30) * update terraform and python libraries for cumulus consolidation * update to python 3.12 * update github actions versions * update github actions versions * update changelog * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * update poetry * use poetry 2.3.2 * update changelog * update cumulus-process minimum * /deploy sit * /deploy sit --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * build * /version 0.7.0a7 * release 0.7.0 * /version 0.7.0rc1 --------- Co-authored-by: podaac-cumulus-postworkflow-normalizer bot <podaac-cumulus-postworkflow-normalizer@noreply.github.com> Co-authored-by: viviant100 <viviant100@users.noreply.github.com> Co-authored-by: James Wood <8115931+jamesfwood@users.noreply.github.com> Co-authored-by: jamesfwood <jamesfwood@users.noreply.github.com> Co-authored-by: thomas loubrieu <60993872+tloubrieu-jpl@users.noreply.github.com> Co-authored-by: Claude (claude-sonnet-4.5) <noreply@anthropic.com> Co-authored-by: tloubrieu-jpl <tloubrieu-jpl@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: sliu008 <sliu008@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the project to use Python 3.12, consolidates dependencies and infrastructure for Cumulus, and makes several related upgrades to workflows and configuration. The changes ensure compatibility with the latest Python version and update related tooling and infrastructure definitions.
Python version and dependency updates:
pyproject.toml, GitHub Actions workflows (.github/workflows/build.yml,.github/workflows/.release-created.yml), and Terraform Lambda runtime (terraform/lambda.tf). [1] [2] [3] [4]Infrastructure and configuration changes:
awsandnullproviders interraform/main.tf.Documentation:
CHANGELOG.mdto reflect the Python 3.12 upgrade, library updates for Cumulus consolidation, and Terraform changes.