Skip to content

Commit a909ab3

Browse files
committed
update to python 3.12
1 parent f0bd2e6 commit a909ab3

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

.github/workflows/build-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
POETRY_VERSION: "2.1.3"
14-
PYTHON_VERSION: "3.10"
14+
PYTHON_VERSION: "3.12"
1515
REGISTRY: ghcr.io
1616
IMAGE_NAME: ${{ github.repository }}
1717

@@ -148,7 +148,7 @@ jobs:
148148
run: |
149149
OUTPUT_FILE=result.json
150150
151-
PAYLOAD=$(echo '{"client_id": "L2SSpyGithubAction", "minimum_alive_secs": 300}' | base64)
151+
PAYLOAD=$(echo '{"client_id": "ConciseGithubAction", "minimum_alive_secs": 300}' | base64)
152152
153153
aws lambda invoke \
154154
--function-name ${{ env.venue }}-launchpad_token_dispenser \

.github/workflows/release-created.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/setup-python@v5
2424
with:
25-
python-version: 3.10
25+
python-version: 3.12
2626

2727
- name: Install Poetry
2828
uses: abatilo/actions-poetry@v4

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### Added
1010
### Changed
11+
- Update to python 3.12
12+
- Update github actions to use launchpad token lambda
13+
- Update sphinx documentation
1114
### Deprecated
1215
### Removed
1316
### Fixed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2024 California Institute of Technology
189+
Copyright 2025 California Institute of Technology
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# such information to foreign countries or providing access to foreign
1111
# persons.
1212

13-
FROM python:3.10-slim
13+
FROM python:3.12-slim
1414

1515
RUN apt-get update \
1616
&& DEBIAN_FRONTEND=noninteractive apt-get upgrade -y \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ packages = [
1515
]
1616

1717
[tool.poetry.dependencies]
18-
python = "^3.10"
18+
python = "^3.12"
1919
netCDF4 = "^1.5.6"
2020
numpy = "^2.1.3"
2121
harmony-service-lib = "^2.4.0"

0 commit comments

Comments
 (0)