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.13
uses: actions/setup-python@v6
with:
python-version: 3.8
python-version: 3.13

- name: Upgrade python pip
run: python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openapi-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.9
python-version: 3.13

- name: Install Poetry
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sandbox-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
run: pipx install poetry
- uses: actions/setup-python@v6
with:
python-version: "3.8"
python-version: "3.13"
cache: "poetry"
- name: Install Sandbox dependencies
run: make install
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8
FROM python:3.13

COPY ./specification/examples/responses /sandbox/api/examples
COPY ./sandbox /sandbox
Expand Down
3,284 changes: 1,760 additions & 1,524 deletions poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ homepage = "https://digital.nhs.uk/developer/api-catalogue"
keywords = ["healthcare", "uk", "nhs"] #TODO add additional keywords

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.13"

[tool.poetry.group.ci.dependencies]
flake8 = "^3.7.9"
flake8 = "^7.3.0"
black = "^24.3.0"

[tool.poetry.group.test.dependencies]
pytest-nhsd-apim = "^5.0.0"

[tool.poetry.group.dev.dependencies]
flake8 = "^3.7.9"
flake8 = "^7.3.0"
black = "^24.3.0"
pip-licenses = "^4.4.0"
jinja2 = "^3.1.6"
Expand Down
748 changes: 358 additions & 390 deletions sandbox/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions sandbox/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ authors = []
package-mode = false

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.13"
gunicorn = "^23.0.0"
flask = "3.0.3" # Can't bump flask due to dropping support for Python 3.8
pyyaml = "^6.0.2"

[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
flake8 = "^7.3.0"
black = "^24.3.0"
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
41 changes: 31 additions & 10 deletions scripts/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ readme = "README.md"
package-mode = false

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.13"
pytest-nhsd-apim = "^5.0.0"


Expand Down