Skip to content

Commit d730018

Browse files
uplifted python from 3.9 to 3.13
1 parent edbd32f commit d730018

11 files changed

Lines changed: 685 additions & 681 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
- name: Checkout
1111
uses: actions/checkout@v2
1212
with:
13-
fetch-depth: 0 # This causes all history to be fetched, which is required for calculate-version to function
13+
fetch-depth: 0 # This causes all history to be fetched, which is required for calculate-version to function
1414

15-
- name: Install Python 3.9
15+
- name: Install Python 3.13
1616
uses: actions/setup-python@v1
1717
with:
18-
python-version: 3.9
18+
python-version: 3.13
1919

2020
- name: Update apt repositories
2121
run: sudo apt update

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
8+
{
9+
"type": "java",
10+
"name": "Current File",
11+
"request": "launch",
12+
"mainClass": "${file}"
13+
},
14+
{
15+
"type": "java",
16+
"name": "ScrApplication",
17+
"request": "launch",
18+
"mainClass": "uk.nhs.adaptors.scr.ScrApplication",
19+
"projectName": "service"
20+
}
21+
]
22+
}

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ name = "pypi"
88
[dev-packages]
99

1010
[requires]
11-
python_version = "3.9"
11+
python_version = "3.13"

azure/azure-build-pipeline.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ trigger:
1010

1111
pr:
1212
branches:
13-
include: ['*']
13+
include: ["*"]
1414

1515
resources:
1616
repositories:
@@ -26,7 +26,6 @@ variables:
2626
extends:
2727
template: azure/common/apigee-build.yml@common
2828
parameters:
29-
python_version: 3.9
29+
python_version: 3.13
3030
service_name: ${{ variables.service_name }}
3131
short_service_name: ${{ variables.short_service_name }}
32-

azure/azure-pr-pipeline.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ resources:
1111
ref: refs/heads/edge
1212
endpoint: NHSDigital
1313
pipelines:
14-
- pipeline: build_pipeline
15-
source: "Summary-Care-Record-Build"
16-
trigger:
17-
branches:
18-
exclude:
19-
- master
20-
- refs/heads/master
21-
- refs/tags/v*
14+
- pipeline: build_pipeline
15+
source: "Summary-Care-Record-Build"
16+
trigger:
17+
branches:
18+
exclude:
19+
- master
20+
- refs/heads/master
21+
- refs/tags/v*
2222

2323
pool:
24-
name: 'AWS-ECS'
24+
name: "AWS-ECS"
2525

2626
variables:
2727
- template: project.yml
2828

2929
extends:
3030
template: azure/common/apigee-deployment.yml@common
3131
parameters:
32-
python_version: 3.9
32+
python_version: 3.13
3333
service_name: ${{ variables.service_name }}
3434
service_base_path: ${{ variables.service_base_path }}
3535
short_service_name: ${{ variables.short_service_name }}

azure/templates/run-tests-int.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
steps:
88
- task: UsePythonVersion@0
99
inputs:
10-
versionSpec: "3.9"
10+
versionSpec: "3.13"
1111

1212
- task: s3-cache-action@1
1313
inputs:

azure/templates/run-tests-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
steps:
22
- task: UsePythonVersion@0
33
inputs:
4-
versionSpec: "3.9"
4+
versionSpec: "3.13"
55

66
- task: s3-cache-action@1
77
inputs:

azure/templates/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
steps:
88
- task: UsePythonVersion@0
99
inputs:
10-
versionSpec: "3.9"
10+
versionSpec: "3.13"
1111

1212
- task: s3-cache-action@1
1313
inputs:

docker/sds-api/integration-tests/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ requests = "*"
1010
unittest-xml-reporting = "*"
1111

1212
[requires]
13-
python_version = "3.9"
13+
python_version = "3.13"
1414

1515
[scripts]
1616
inttests = 'python -m xmlrunner discover -o test-reports ./tests'

docker/sds-api/spine-directory-service/sds/lookup/tests/data/my_real_server_schema.json

Lines changed: 641 additions & 658 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)