Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
with:
fetch-depth: 0 # This causes all history to be fetched, which is required for calculate-version to function

- name: Install Python 3.8
- name: Install Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.9

- name: Update apt repositories
run: sudo apt update
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ guard-%:
install: install-node install-python install-hooks

install-python:
poetry install
poetry install --no-root

install-node:
npm install
Expand Down Expand Up @@ -79,4 +79,4 @@ smoketest: pytest-guards
poetry run python -m pytest -v --junitxml=smoketest-report.xml -s -m smoketest

prod-smoketest: pytest-guards
poetry run python -m pytest -v --junitxml=smoketest-report.xml -s -m prodsmoketest
poetry run python -m pytest -v --junitxml=smoketest-report.xml -s -m prodsmoketest
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ name = "pypi"
[dev-packages]

[requires]
python_version = "3.8"
python_version = "3.9"
1 change: 1 addition & 0 deletions azure/azure-build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ variables:
extends:
template: azure/common/apigee-build.yml@common
parameters:
python_version: 3.9
service_name: ${{ variables.service_name }}
short_service_name: ${{ variables.short_service_name }}

1 change: 1 addition & 0 deletions azure/azure-pr-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ variables:
extends:
template: azure/common/apigee-deployment.yml@common
parameters:
python_version: 3.9
service_name: ${{ variables.service_name }}
service_base_path: ${{ variables.service_base_path }}
short_service_name: ${{ variables.short_service_name }}
Expand Down
1,789 changes: 1,064 additions & 725 deletions collection/postman_collection.json

Large diffs are not rendered by default.

1,682 changes: 879 additions & 803 deletions poetry.lock

Large diffs are not rendered by default.

18 changes: 7 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
[project]
python = "^3.8"
python = "^3.9"
name = "summary-care-record-api"


[tool.poetry]
name = "summary-care-record-api"
version = "0.0.1-alpha"
description = "TODO"
version = "3.0.5-alpha"
description = "NHS Hosted adaptor to convert HL7 based patient Summary Care Records into JSON FHIR, and vice-versa."

license = "MIT"

authors = [
#TODO add authors
]
authors = []

readme = 'README.md'

repository = "https://github.com/NHSDigital/summary-care-record-api"

keywords = ["healthcare", "uk", "nhs"] #TODO add additional keywords

keywords = ["healthcare", "uk", "nhs"]

[tool.poetry.dependencies]
certifi = ">=2024.7.4"
Expand All @@ -31,14 +29,13 @@ locust = "^1.2"
polling2 = "^0.4.7"
pytest-bdd = "^4.0.1"
pytest-rerunfailures = "^9.1.1"
python = "^3.8"
python = "^3.9"
python-dateutil = "^2.8.1"
pyyaml = "^5.2"
requests = "^2.32.3"
semver = "^2.10.2"
werkzeug = "3.0.3"


[tool.poetry.dev-dependencies]
flake8 = "^3.8.3"
black = "^24.3.0"
Expand All @@ -49,5 +46,4 @@ pyjwt = "^2.0.1"
pytest-rerunfailures = "9.1.1"
pip-licenses = "^3.5.3"


[tool.poetry.scripts]
Loading