Skip to content

Commit bc3b02e

Browse files
authored
Chore: [AEA-0000] - update language versions (#387)
## Summary - Routine Change ### Details - update python, poetry - remove node
1 parent fa3c762 commit bc3b02e

File tree

10 files changed

+774
-784
lines changed

10 files changed

+774
-784
lines changed

.gitallowed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ CidrIp: 0\.0\.0\.0/0
3434
.*\.venv.*
3535
.*node_modules.*
3636
pom\.xml
37+
poetry\.lock

.tool-versions

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
maven 3.9.0
22
java corretto-21.0.2.14.1
3-
python 3.12.7
4-
poetry 1.8.2
3+
python 3.12.12
4+
poetry 2.2.1
55
shellcheck 0.9.0
66
direnv 2.32.2
77
actionlint 1.6.26
8-
nodejs 20.19.0

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@ guard-%:
55
fi
66

77
# install targets
8-
install: install-python install-hooks install-node
8+
install: install-python install-hooks
99

1010
install-python:
1111
poetry install
1212

13-
install-node:
14-
npm ci
15-
1613
install-hooks: install-python
1714
poetry run pre-commit install --install-hooks --overwrite
1815

SAMtemplates/lambda_resources.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ Parameters:
1515
SplunkSubscriptionFilterRole:
1616
Type: String
1717
Description: Subscription filter role for sending logs to splunk
18-
Default: none
1918
SplunkDeliveryStream:
2019
Type: String
2120
Description: Splunk delivery stream

package-lock.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

package.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

poetry.lock

Lines changed: 756 additions & 652 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,11 @@
306306
</dependency>
307307
</dependencies>
308308
</plugin>
309+
<plugin>
310+
<groupId>org.sonarsource.scanner.maven</groupId>
311+
<artifactId>sonar-maven-plugin</artifactId>
312+
<version>5.5.0.6356</version>
313+
</plugin>
309314
</plugins>
310315
</build>
311316

pyproject.toml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[project]
2-
python = "3.12.7"
2+
python = "^3.12"
3+
name = "eps-FHIR-validator-lambda"
34

45
[tool.poetry]
56
name = "eps-FHIR-validator-lambda"
@@ -11,19 +12,16 @@ authors = [
1112
]
1213
readme = "README.md"
1314
repository = "https://github.com/NHSDigital/eps-FHIR-validator-lambda"
15+
package-mode = false
1416

1517
[tool.poetry.dependencies]
16-
python = "3.12.7"
17-
requests = "^2.32.3"
18+
python = "^3.12"
19+
flake8 = "^7.3.0"
20+
requests = "^2.32.5"
1821

19-
[tool.poetry.dev-dependencies]
20-
flake8 = "^7.1.2"
22+
[tool.poetry.group.dev.dependencies]
2123
pip-licenses = "^5.0.0"
22-
pre-commit = "^4.1.0"
23-
cfn-lint = "^1.27.0"
24+
pre-commit = "^4.5.1"
25+
cfn-lint = "^1.43.2"
2426

2527
[tool.poetry.scripts]
26-
27-
[build-system]
28-
requires = ["poetry>=1.6"]
29-
build-backend = "poetry.masonry.api"

release.config.js

Lines changed: 0 additions & 87 deletions
This file was deleted.

0 commit comments

Comments
 (0)