Skip to content

Commit 89e72b5

Browse files
committed
Set strict versions to 3.11
1 parent 7aa22f7 commit 89e72b5

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ jobs:
6969
- name: Run unittest with coverage-ack-lambda
7070
working-directory: ack_backend
7171
id: acklambda
72+
env:
73+
PYTHONPATH: ${{ github.workspace }}/ack_backend/src:${{ github.workspace }}/ack_backend/tests
7274
continue-on-error: true
7375
run: |
7476
poetry install

lambdas/id_sync/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ packages = [
1818
]
1919

2020
[tool.poetry.dependencies]
21-
python = ">=3.11"
21+
python = "~3.11"
2222
boto3 = "~1.38.29"
2323
mypy-boto3-dynamodb = "^1.26.164"
2424
moto = "~5.1.5"

lambdas/shared/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ packages = [
1616
]
1717

1818
[tool.poetry.dependencies]
19-
python = ">=3.11"
19+
python = "~3.11"
2020
boto3 = "~1.38.29"
2121
mypy-boto3-dynamodb = "^1.26.164"
2222
moto = "~5.1.5"

mns_subscription/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Your Name <[email protected]>"]
66
packages = [{include = "src"}]
77

88
[tool.poetry.dependencies]
9-
python = "^3.11"
9+
python = "~3.11"
1010
boto3 = "~1.38.42"
1111
pyjwt = "~2.10.1"
1212
moto = "^5.1.6"

redis_sync/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ packages = [
1717
]
1818

1919
[tool.poetry.dependencies]
20-
python = ">=3.11"
20+
python = "~3.11"
2121
boto3 = "~1.38.29"
2222
mypy-boto3-dynamodb = "^1.26.164"
2323
moto = "~5.1.5"

0 commit comments

Comments
 (0)