Skip to content

Commit 1237ccb

Browse files
feat: changes fro python 3.14 layer release (#426)
1 parent a058c49 commit 1237ccb

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/python.yml

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

1818
strategy:
1919
matrix:
20-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
20+
python-version: ['3.9', '3.10', '3.11']
2121
steps:
2222
- uses: actions/checkout@v3
2323

libBuild.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ function layer_name_str() {
9191
"python3.13")
9292
rt_part="Python313"
9393
;;
94+
"python3.14")
95+
rt_part="Python314"
96+
;;
9497
"nodejs20.x")
9598
rt_part="NodeJS20X"
9699
;;
@@ -148,6 +151,9 @@ function s3_prefix() {
148151
"python3.13")
149152
name="nr-python3.13"
150153
;;
154+
"python3.14")
155+
name="nr-python3.14"
156+
;;
151157
"nodejs20.x")
152158
name="nr-nodejs20.x"
153159
;;
@@ -188,7 +194,7 @@ function agent_name_str() {
188194
"java8.al2"|"java11"|"java17"|"java21")
189195
agent_name="Java"
190196
;;
191-
"python3.9"|"python3.10"|"python3.11"|"python3.12"|"python3.13")
197+
"python3.9"|"python3.10"|"python3.11"|"python3.12"|"python3.13"|"python3.14")
192198
agent_name="Python"
193199
;;
194200
*)

0 commit comments

Comments
 (0)