Skip to content

Commit 21b88cc

Browse files
Merge pull request #1875 from NHSDigital/develop
APIM-R 1.39 Cut
2 parents 3f48bdb + 07d1eea commit 21b88cc

16 files changed

+543
-597
lines changed

.github/workflows/continous-integration-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
with:
1313
fetch-depth: 0 # This causes all history to be fetched, which is required for calculate-version to function
1414

15-
- name: Install Python 3.8
15+
- name: Install Python 3.10
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.8
18+
python-version: '3.10'
1919

2020
- name: Upgrade python packaging tools
2121
run: python -m pip install --upgrade pip setuptools wheel

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The contents of this repository are protected by Crown Copyright (C).
3535
### Environment setup
3636
Currently, automation for setting up the right environment is only available for machines based on RedHatEnterpriseLinux (RHEL).
3737
Running the following will ensure your environment is ready for development.
38-
It will install [pyenv](https://github.com/pyenv/pyenv), Python 3.8.12 and its dependencies (yum), create a virtual environment (named apigee), and ensure poetry is installed under it.
38+
It will install [pyenv](https://github.com/pyenv/pyenv), Python 3.10.8 and its dependencies (yum), create a virtual environment (named apigee), and ensure poetry is installed under it.
3939
```
4040
$ make setup-environment
4141
```

azure/azure-build-pipeline.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resources:
1717
- repository: common
1818
type: github
1919
name: NHSDigital/api-management-utils
20-
ref: refs/heads/edge
20+
ref: refs/heads/master
2121
endpoint: NHSDigital
2222

2323
variables:
@@ -27,3 +27,4 @@ extends:
2727
parameters:
2828
service_name: ${{ variables.service_name }}
2929
short_service_name: ${{ variables.short_service_name }}
30+
python_version: ${{ variables.python_version }}

azure/azure-pr-pipeline.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ resources:
88
- repository: common
99
type: github
1010
name: NHSDigital/api-management-utils
11-
ref: refs/heads/edge
11+
ref: refs/heads/master
1212
endpoint: NHSDigital
1313
pipelines:
1414
- pipeline: build_pipeline
@@ -33,6 +33,7 @@ extends:
3333
short_service_name: ${{ variables.short_service_name }}
3434
service_base_path: ${{ variables.service_base_path }}
3535
manual_approval_env: manual-approval-ptl
36+
python_version: ${{ variables.python_version }}
3637
apigee_deployments:
3738
- environment: manual-approval
3839
stage_name: manual_approval_alpha_pr

azure/azure-release-pipeline.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ resources:
88
- repository: common
99
type: github
1010
name: NHSDigital/api-management-utils
11-
ref: refs/heads/edge
11+
ref: refs/heads/master
1212
endpoint: NHSDigital
1313
pipelines:
1414
- pipeline: build_pipeline
@@ -33,6 +33,7 @@ extends:
3333
enable_status_monitoring: true
3434
manual_approval_env: manual-approval-ptl
3535
prod_producer_approval: true
36+
python_version: ${{ variables.python_version }}
3637
apigee_deployments:
3738
- environment: manual-approval
3839
stage_name: ers_manual_approval_alpha

azure/project.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ variables:
55
product_display_name: e-Referrals-Service
66
product_description: The NHS e-RS vision is to enable local innovation and adoption of paperless referrals. To support this vision NHS Digital have created a set of APIs which provide a well-defined, simple to use data interface to the NHS e-Referral Service (e-RS). See https://digital.nhs.uk/developer/api-catalogue/e-referral-service-fhir
77
spec_file: e-referrals-service-api.json
8+
python_version: 3.10

0 commit comments

Comments
 (0)